aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xlopez@igalia.com>2011-08-30 00:00:10 +0800
committerXan Lopez <xlopez@igalia.com>2011-08-30 00:00:10 +0800
commitefbe79e918a5c518f507a94d08505c009bec4a59 (patch)
tree5dd48c41a7317401e1807d65c010af52c3504a07
parent3b5c8cd24ecd27e5a5f0f52421e4371389be8fac (diff)
downloadgsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar
gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.gz
gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.bz2
gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.lz
gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.xz
gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.zst
gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.zip
window-commands: make 'Enter' activate the default response
Which creates the corresponding Web App.
-rw-r--r--src/window-commands.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window-commands.c b/src/window-commands.c
index 3cdbcf686..90a7f51aa 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -555,6 +555,7 @@ window_cmd_file_save_as_application (GtkAction *action,
gtk_container_add (GTK_CONTAINER (box), image);
entry = gtk_entry_new ();
+ gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE);
gtk_box_pack_end (GTK_BOX (box), entry, FALSE, FALSE, 0);
data = g_slice_new0 (EphyApplicationDialogData);