diff options
author | Piers Cornwell <piers@gnome.org> | 2004-04-10 05:12:49 +0800 |
---|---|---|
committer | Piers Cornwell <piers@src.gnome.org> | 2004-04-10 05:12:49 +0800 |
commit | 90bcca74d19e1ad7d7254dabf57350f4fe7a93f7 (patch) | |
tree | 93ec3be38381717cb3f13bd8370bb248647f1b97 /src | |
parent | 0def815524548951faa2fdff0c2ea914b72da6d3 (diff) | |
download | gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.tar gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.tar.gz gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.tar.bz2 gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.tar.lz gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.tar.xz gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.tar.zst gsoc2013-epiphany-90bcca74d19e1ad7d7254dabf57350f4fe7a93f7.zip |
Add Ctrl+S as an alternate accel for Save As. Fixes bug #139415.
2004-04-09 Piers Cornwell <piers@gnome.org>
* src/ephy-window.c:
* data/ui/epiphany-ui.xml:
Add Ctrl+S as an alternate accel for Save As.
Fixes bug #139415.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 89aa3504b..9a785e974 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -103,6 +103,9 @@ static GtkActionEntry ephy_menu_entries [] = { { "FileSaveAs", GTK_STOCK_SAVE_AS, N_("Save _As..."), "<shift><control>S", N_("Save the current page"), G_CALLBACK (window_cmd_file_save_as) }, + { "FileSave", GTK_STOCK_SAVE_AS, N_("Save _As..."), "<control>S", + N_("Save the current page"), + G_CALLBACK (window_cmd_file_save_as) }, { "FilePrintSetup", STOCK_PRINT_SETUP, N_("Print Set_up..."), NULL, N_("Setup the page settings for printing"), G_CALLBACK (window_cmd_file_print_setup) }, |