aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-go-action.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6361a0ad4..923aaa8d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);