aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-09-15 20:21:40 +0800
committerChristian Persch <chpe@src.gnome.org>2005-09-15 20:21:40 +0800
commite00c32de2c601e1038ccb0473ac2373c87112ba8 (patch)
tree4fb33d127f6a9869b6383bc0fe357e47dce796e8
parent499e8bdaf47bb10de1e93de26edb70510eb3397f (diff)
downloadgsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.tar
gsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.tar.gz
gsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.tar.bz2
gsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.tar.lz
gsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.tar.xz
gsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.tar.zst
gsoc2013-epiphany-e00c32de2c601e1038ccb0473ac2373c87112ba8.zip
Make Close the default button.
2005-09-15 Christian Persch <chpe@cvs.gnome.org> * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_construct): Make Close the default button.
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-toolbar-editor.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3bc64f0b3..0f8b1bc2d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-09-15 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_construct):
+
+ Make Close the default button.
+
2005-09-09 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphySingle.cpp:
diff --git a/src/ephy-toolbar-editor.c b/src/ephy-toolbar-editor.c
index 97a8558d6..e2a7be7b9 100644
--- a/src/ephy-toolbar-editor.c
+++ b/src/ephy-toolbar-editor.c
@@ -289,6 +289,7 @@ ephy_toolbar_editor_constructor (GType type,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
gtk_dialog_add_button (GTK_DIALOG (dialog),
GTK_STOCK_HELP, GTK_RESPONSE_HELP);
+ gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CLOSE);
gtk_widget_show (editor);