diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2007-06-06 04:20:24 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-06-06 04:20:24 +0800 |
commit | 802553e5dc142514f762570d712f4ca4eef78ad1 (patch) | |
tree | 455bcb2a70d3e47756e47e3da1a1d7e59d556dd3 | |
parent | a648b3de0a6d8d5a4a34bebb6bb8950805662e1b (diff) | |
download | gsoc2013-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-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-go-action.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -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 ); } |