aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-go-action.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-01-06 08:48:03 +0800
committerChristian Persch <chpe@src.gnome.org>2005-01-06 08:48:03 +0800
commitdfde304925628b1a450f0593a6b90ef128406fd2 (patch)
tree675bf84c13bde9e93709ef54575a423ba05ab8d6 /src/ephy-go-action.c
parent4c4033f2578c222627d2158110bfb6dcda39e7ac (diff)
downloadgsoc2013-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.c1
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);