diff options
author | raveit65 <[email protected]> | 2017-08-31 09:40:08 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-31 13:28:21 +0200 |
commit | 89a0e4e1c0c5566129309b64873675f61f5362b8 (patch) | |
tree | bdcf63037a1585bde3c01c61181d46d8e461e063 | |
parent | f7d2ae99fb4a5e3d3a72b6af9300f286069a6d0d (diff) | |
download | atril-89a0e4e1c0c5566129309b64873675f61f5362b8.tar.bz2 atril-89a0e4e1c0c5566129309b64873675f61f5362b8.tar.xz |
Activate shortcut keys for dual and continuous layout
'd' for dual and 'w' for continuous layout.
-rw-r--r-- | shell/ev-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c index 9213e50d..93b10a34 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -6325,10 +6325,10 @@ static const GtkToggleActionEntry toggle_entries[] = { { "ViewSidebar", GTK_STOCK_INDEX, N_("Side _Pane"), "F9", N_("Show or hide the side pane"), G_CALLBACK (ev_window_view_sidebar_cb), TRUE }, - { "ViewContinuous", EV_STOCK_VIEW_CONTINUOUS, N_("_Continuous"), NULL, + { "ViewContinuous", EV_STOCK_VIEW_CONTINUOUS, N_("_Continuous"), "c", N_("Show the entire document"), G_CALLBACK (ev_window_cmd_continuous), TRUE }, - { "ViewDual", EV_STOCK_VIEW_DUAL, N_("_Dual"), NULL, + { "ViewDual", EV_STOCK_VIEW_DUAL, N_("_Dual"), "d", N_("Show two pages at once"), G_CALLBACK (ev_window_cmd_dual), FALSE }, { "ViewDualOddLeft", NULL, N_("_Odd pages left"), NULL, |