diff options
author | A. Palsson <[email protected]> | 2019-09-17 21:16:09 +0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-09 12:20:21 +0200 |
commit | 5782894e032b84dc99bd4214876989bb61667a9d (patch) | |
tree | 096b90bc7af745e5232645f1b3c67439b9333ce5 | |
parent | 059437a76efe59d2b8900fc38e2798285e24f001 (diff) | |
download | atril-5782894e032b84dc99bd4214876989bb61667a9d.tar.bz2 atril-5782894e032b84dc99bd4214876989bb61667a9d.tar.xz |
Added accelerator 'o' for toggling Odd Pages Left.
Fixes https://github.com/mate-desktop/atril/issues/365
-rw-r--r-- | shell/ev-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c index 9f37769a..0188b588 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -6613,7 +6613,7 @@ static const GtkToggleActionEntry toggle_entries[] = { { "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, + { "ViewDualOddLeft", NULL, N_("_Odd pages left"), "o", N_("Show odd pages on the left in dual mode"), G_CALLBACK (ev_window_cmd_dual_odd_pages_left), FALSE }, { "ViewFullscreen", "view-fullscreen", N_("_Fullscreen"), "F11", |