diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-06 08:48:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-06 08:48:03 +0800 |
commit | dfde304925628b1a450f0593a6b90ef128406fd2 (patch) | |
tree | 675bf84c13bde9e93709ef54575a423ba05ab8d6 /src/ephy-go-action.c | |
parent | 4c4033f2578c222627d2158110bfb6dcda39e7ac (diff) | |
download | gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.tar gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.tar.gz gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.tar.bz2 gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.tar.lz gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.tar.xz gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.tar.zst gsoc2013-epiphany-dfde304925628b1a450f0593a6b90ef128406fd2.zip |
Don't focus the button on click.
2005-01-06 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-go-action.c: (create_tool_item):
Don't focus the button on click.
Diffstat (limited to 'src/ephy-go-action.c')
-rw-r--r-- | src/ephy-go-action.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ephy-go-action.c b/src/ephy-go-action.c index 9eaa5ed1d..e84860c23 100644 --- a/src/ephy-go-action.c +++ b/src/ephy-go-action.c @@ -70,6 +70,7 @@ create_tool_item (GtkAction *action) button = gtk_button_new_with_label (_("Go")); gtk_button_set_relief(GTK_BUTTON (button), GTK_RELIEF_NONE); + gtk_button_set_focus_on_click (GTK_BUTTON (button), FALSE); gtk_container_add (GTK_CONTAINER (item), button); gtk_widget_show (button); |