summaryrefslogtreecommitdiff
path: root/gtk/window.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-07-07 23:29:06 +0100
committerVincent Sanders <vince@kyllikki.org>2014-07-07 23:29:06 +0100
commit5ce4f11eac7fae76fe2965f92daf2910f80eb6a1 (patch)
tree71b28cc100bd7b6248405fd03a1755a533180fec /gtk/window.c
parent07f1ae746145022fb07ecb9e9163c013f432d13f (diff)
downloadnetsurf-5ce4f11eac7fae76fe2965f92daf2910f80eb6a1.tar.gz
netsurf-5ce4f11eac7fae76fe2965f92daf2910f80eb6a1.tar.bz2
add link context menu to gtk and add link copying and bookmarking
Diffstat (limited to 'gtk/window.c')
-rw-r--r--gtk/window.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/window.c b/gtk/window.c
index 9c4b668b9..dc8cbf935 100644
--- a/gtk/window.c
+++ b/gtk/window.c
@@ -338,8 +338,9 @@ static gboolean nsgtk_window_button_press_event(GtkWidget *widget,
case 3: /* Right button, usually. Action button, context menu. */
browser_window_remove_caret(g->bw, true);
- nsgtk_scaffolding_popup_menu(g->scaffold, g->mouse.pressed_x,
- g->mouse.pressed_y);
+ nsgtk_scaffolding_context_menu(g->scaffold,
+ g->mouse.pressed_x,
+ g->mouse.pressed_y);
return TRUE;
default: