From: Christian Dywan Date: Mon, 25 Oct 2010 21:40:34 +0000 (+0200) Subject: Right-click on statusbar border should show context menu X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=691f6c7bbd1312c44af33b1ad2f05cfe73fbaa8d;p=midori Right-click on statusbar border should show context menu --- diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 4253858b..b0860454 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -3908,12 +3908,13 @@ midori_browser_menu_button_press_event_cb (GtkWidget* toolitem, GdkEventButton* event, MidoriBrowser* browser) { + if (event->button != 3) + return FALSE; + /* GtkMenuBar catches button events on children with submenus, so we need to see if the actual widget is the menubar, and if it is an item, we forward it to the actual widget. */ - toolitem = gtk_get_event_widget ((GdkEvent*)event); - - if (GTK_IS_MENU_BAR (toolitem) && event->button == 3) + if ((GTK_IS_BOX (toolitem) || GTK_IS_MENU_BAR (toolitem))) { midori_browser_toolbar_popup_context_menu_cb ( GTK_IS_BIN (toolitem) && gtk_bin_get_child (GTK_BIN (toolitem)) ? @@ -3921,7 +3922,7 @@ midori_browser_menu_button_press_event_cb (GtkWidget* toolitem, event->x, event->y, event->button, browser); return TRUE; } - else if (GTK_IS_MENU_ITEM (toolitem) && event->button == 3) + else if (GTK_IS_MENU_ITEM (toolitem)) { gboolean handled; g_signal_emit_by_name (toolitem, "button-press-event", event, &handled);