summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-11-20 00:30:17 +0100
committerQuentin Rameau <quinq@fifth.space>2015-11-20 00:34:23 +0100
commit0b5b798eb24ee6978c3ae932942105bf53122fe1 (patch)
treedb543061c57fdbab186769329e132e9e8f8f4709 /surf.c
parent2c2a7b608e01d2347812a84ecb08f98cb4d13789 (diff)
downloadsurf-0b5b798eb24ee6978c3ae932942105bf53122fe1.tar.gz
surf-0b5b798eb24ee6978c3ae932942105bf53122fe1.tar.bz2
surf-0b5b798eb24ee6978c3ae932942105bf53122fe1.zip
Adapt print()
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/surf.c b/surf.c
index 4251690..9444982 100644
--- a/surf.c
+++ b/surf.c
@@ -164,7 +164,7 @@ static void showview(WebKitWebView *v, Client *c);
static void newwindow(Client *c, const Arg *arg, gboolean noembed);
static GtkWidget *createwindow(Client *c);
static void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d);
-static void print(Client *c, const Arg *arg);
+static void print(Client *c, const Arg *a);
static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event,
gpointer d);
static gboolean winevent(GtkWidget *w, GdkEvent *e, Client *c);
@@ -1152,9 +1152,10 @@ pasteuri(GtkClipboard *clipboard, const char *text, gpointer d)
}
void
-print(Client *c, const Arg *arg)
+print(Client *c, const Arg *a)
{
- webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
+ webkit_print_operation_run_dialog(webkit_print_operation_new(c->view),
+ GTK_WINDOW(c->win));
}
GdkFilterReturn