Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-12-20 09:01:38 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-12-20 09:01:38 (GMT)
commit4799d9b27db47383f3944f49338d67e2c32f15fb (patch)
tree6637075f2bcc75f08105da92140cb25d64dd9b5f
parent8bb96fa1230a8d32043a091c8f10da0fcff6580f (diff)
Add shortcut for "save a copy" menu entry. Fix for the bug #324582.
* shell/ev-window.c: Add shortcut for "save a copy" menu entry. Fix for the bug #324582.
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-window.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e9777fb..65b09fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-12-20 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * shell/ev-window.c:
+
+ Add shortcut for "save a copy" menu entry. Fix for
+ the bug #324582.
+
2005-12-19 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* shell/ev-pixbuf-cache.c: (dispose_cache_job_info),
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 974936f..12d1f02 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -2844,7 +2844,8 @@ static const GtkActionEntry entries[] = {
{ "FileOpen", GTK_STOCK_OPEN, N_("_Open..."), "<control>O",
N_("Open an existing document"),
G_CALLBACK (ev_window_cmd_file_open) },
- { "FileSaveAs", GTK_STOCK_SAVE_AS, N_("_Save a Copy..."), NULL, NULL,
+ { "FileSaveAs", GTK_STOCK_SAVE_AS, N_("_Save a Copy..."), "<control>S",
+ N_("Save a copy of the current document"),
G_CALLBACK (ev_window_cmd_save_as) },
{ "FilePrint", GTK_STOCK_PRINT, N_("_Print..."), "<control>P",
N_("Print this document"),