diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-08-30 00:00:10 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-08-30 00:00:10 +0800 |
commit | efbe79e918a5c518f507a94d08505c009bec4a59 (patch) | |
tree | 5dd48c41a7317401e1807d65c010af52c3504a07 /src | |
parent | 3b5c8cd24ecd27e5a5f0f52421e4371389be8fac (diff) | |
download | gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.gz gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.tar.zst gsoc2013-epiphany-efbe79e918a5c518f507a94d08505c009bec4a59.zip |
window-commands: make 'Enter' activate the default response
Which creates the corresponding Web App.
Diffstat (limited to 'src')
-rw-r--r-- | src/window-commands.c | 1 |
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); |