From fcc64970fe5f0adf95cd02bcb09c562f61da45d9 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sun, 30 Aug 2009 02:41:10 +0000 Subject: [PATCH] Do not block propagation of the button-press event --- src/panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel.c b/src/panel.c index c905b7e..d03e3b7 100644 --- a/src/panel.c +++ b/src/panel.c @@ -198,7 +198,7 @@ static gboolean _on_button_press(GtkWidget * widget, GdkEventButton * event, fprintf(stderr, "DEBUG: %s()\n", __func__); #endif if(event->type != GDK_BUTTON_PRESS || event->button != 3) - return FALSE; + return TRUE; #ifdef DEBUG fprintf(stderr, "DEBUG: %s() right-click\n", __func__); #endif