aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog7
-rw-r--r--src/ephy-go-action.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 900ad7964..278ec12eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
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.
+
+2007-06-05 Diego Escalante Urrelo <diegoe@gnome.org>
+
* src/ephy-window.c:
Added GTK_STOCK_SELECT_ALL to SelectAll action.
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
);
}