Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-05-13 13:16:32 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2009-05-13 13:16:32 (GMT)
commitb3aa1fcef50a13ab0bbd6720e6cd8cbe8ff3c4b7 (patch)
tree6ffb533dd0408d04ee9b099e5085c782b4757b2d /shell
parent5aca30a9831db84b4485fe6a5c8de5357c940d5d (diff)
[shell] Implement Print named action
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 7ec9aca..1f368ec 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -5372,6 +5372,8 @@ do_action_named (EvWindow *window, EvLinkAction *action)
ev_window_cmd_edit_find (NULL, window);
} else if (g_ascii_strcasecmp (name, "Close") == 0) {
ev_window_cmd_file_close_window (NULL, window);
+ } else if (g_ascii_strcasecmp (name, "Print") == 0) {
+ ev_window_cmd_file_print (NULL, window);
} else {
g_warning ("Unimplemented named action: %s, please post a "
"bug report in Evince bugzilla "