Applied print patch from pancake
This commit is contained in:
parent
e8deb956d4
commit
f44c1d392e
7
surf.c
7
surf.c
|
@ -197,8 +197,13 @@ keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
|
||||||
if(ev->state & GDK_CONTROL_MASK) {
|
if(ev->state & GDK_CONTROL_MASK) {
|
||||||
switch(ev->keyval) {
|
switch(ev->keyval) {
|
||||||
case GDK_p:
|
case GDK_p:
|
||||||
gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteurl, c);
|
case GDK_P:
|
||||||
|
if((ev->state & GDK_SHIFT_MASK))
|
||||||
|
webkit_web_frame_print(webkit_web_view_get_main_frame(c->view));
|
||||||
|
else
|
||||||
|
gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteurl, c);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
case GDK_y:
|
case GDK_y:
|
||||||
gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), webkit_web_view_get_uri(c->view), -1);
|
gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), webkit_web_view_get_uri(c->view), -1);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in New Issue