diff options
author | Michael Natterer <mitch@lanedo.com> | 2011-09-19 00:32:52 +0200 |
---|---|---|
committer | Michael Natterer <mitch@gimp.org> | 2011-09-26 16:01:50 +0200 |
commit | b663f3a00bc3d9a5f1e17eebe742ee14504fdcac (patch) | |
tree | b211904ba221afa1fbea76d6275826ddfbc4e731 /gtk/gtklinkbutton.c | |
parent | 0955a59563d0b64a9bc9404ee9e1ec3809df5270 (diff) | |
download | gtk+-b663f3a00bc3d9a5f1e17eebe742ee14504fdcac.tar.gz |
Bug 659406 - Abstract what triggers a context menu
Add _gtk_button_event_triggers_context_menu() and use it instead
of checking for event->button == 3, so context menus are invoked
correctly on the Mac.
Diffstat (limited to 'gtk/gtklinkbutton.c')
-rw-r--r-- | gtk/gtklinkbutton.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtklinkbutton.c b/gtk/gtklinkbutton.c index bd2ca65d80..0fdcbeab25 100644 --- a/gtk/gtklinkbutton.c +++ b/gtk/gtklinkbutton.c @@ -63,6 +63,7 @@ #include "gtkstock.h" #include "gtkshow.h" #include "gtktooltip.h" +#include "gtkprivate.h" #include "gtkintl.h" #include "a11y/gtklinkbuttonaccessible.h" @@ -521,7 +522,7 @@ gtk_link_button_button_press (GtkWidget *widget, if (!gtk_widget_has_focus (widget)) gtk_widget_grab_focus (widget); - if ((event->button == 3) && (event->type == GDK_BUTTON_PRESS)) + if (_gtk_button_event_triggers_context_menu (event)) { gtk_link_button_do_popup (GTK_LINK_BUTTON (widget), event); |