diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-go-action.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2005-01-06 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-go-action.c: (create_tool_item): + + Don't focus the button on click. + +2005-01-06 Christian Persch <chpe@cvs.gnome.org> + * src/popup-commands.c: (background_download_completed): Open the GNOME background properties capplet when setting the 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); |