aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-go-action.c
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@gnome.org>2007-06-06 04:20:24 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2007-06-06 04:20:24 +0800
commit802553e5dc142514f762570d712f4ca4eef78ad1 (patch)
tree455bcb2a70d3e47756e47e3da1a1d7e59d556dd3 /src/ephy-go-action.c
parenta648b3de0a6d8d5a4a34bebb6bb8950805662e1b (diff)
downloadgsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.tar
gsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.tar.gz
gsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.tar.bz2
gsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.tar.lz
gsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.tar.xz
gsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.tar.zst
gsoc2013-epiphany-802553e5dc142514f762570d712f4ca4eef78ad1.zip
Fix go button behaviour to react to button-release-event and not
2007-06-05 Diego Escalante Urrelo <diegoe@gnome.org> * src/ephy-go-action.c: Fix go button behaviour to react to button-release-event and not button-press-event. Patch by Sebastiaan Samyn. Bug #441419. svn path=/trunk/; revision=7072
Diffstat (limited to 'src/ephy-go-action.c')
-rw-r--r--src/ephy-go-action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-go-action.c b/src/ephy-go-action.c
index a7a0c29b4..192ece54e 100644
--- a/src/ephy-go-action.c
+++ b/src/ephy-go-action.c
@@ -95,7 +95,7 @@ connect_proxy (GtkAction *action,
if (GTK_IS_TOOL_ITEM (proxy))
{
- g_signal_connect (GTK_BIN (proxy)->child, "button-press-event",
+ g_signal_connect (GTK_BIN (proxy)->child, "button-release-event",
G_CALLBACK (button_clicked_cb), action
);
}