diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2007-08-27 05:57:37 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-08-27 05:57:37 +0800 |
commit | c18c59e4065b0a40cea93bb69976d40d6f34c7dd (patch) | |
tree | c46b5a311905c55f3f76bbbd60b8049a5523ded8 /src/ephy-go-action.c | |
parent | 3e87142caf4b143d59ebae348ace706917b7eb51 (diff) | |
download | gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.tar gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.tar.gz gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.tar.bz2 gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.tar.lz gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.tar.xz gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.tar.zst gsoc2013-epiphany-c18c59e4065b0a40cea93bb69976d40d6f34c7dd.zip |
Fix the Go button signal handler so it doesn't stop the propagation of the
2007-08-26 Diego Escalante Urrelo <diegoe@gnome.org>
* src/ephy-go-action.c:
Fix the Go button signal handler so it doesn't stop the propagation of
the event due to a bad signal handler. Fixes bug #469845. Patch by
Cosimo Cecchi.
svn path=/trunk/; revision=7301
Diffstat (limited to 'src/ephy-go-action.c')
-rw-r--r-- | src/ephy-go-action.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ephy-go-action.c b/src/ephy-go-action.c index 192ece54e..8a6079182 100644 --- a/src/ephy-go-action.c +++ b/src/ephy-go-action.c @@ -78,13 +78,15 @@ create_tool_item (GtkAction *action) return item; } -static void +static gboolean button_clicked_cb (GtkWidget *widget, GdkEventButton *event, gpointer user_data) { if (event->button == 1 || event->button == 2) gtk_action_activate (GTK_ACTION (user_data)); + + return FALSE; } static void |