diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-13 09:28:07 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-13 09:28:07 +0200 |
commit | f6957ed417fca222912226cb9c3cb7e75e106c28 (patch) | |
tree | b1d2da4fdc475dadb9e3d91b90c41f592667e72b | |
parent | 2adb05255f80f0cacb591dea07d43af3d41f1f38 (diff) |
Window: Toggle sidebar via phone menu
-rw-r--r-- | src/ui/window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/window.c b/src/ui/window.c index 554dc592..dc056887 100644 --- a/src/ui/window.c +++ b/src/ui/window.c | |||
@@ -242,6 +242,7 @@ static const iMenuItem phoneNavMenuItems_[] = { | |||
242 | { "---", 0, 0, NULL }, | 242 | { "---", 0, 0, NULL }, |
243 | { download_Icon " Save to Downloads", SDLK_s, KMOD_PRIMARY, "document.save" }, | 243 | { download_Icon " Save to Downloads", SDLK_s, KMOD_PRIMARY, "document.save" }, |
244 | { "---", 0, 0, NULL }, | 244 | { "---", 0, 0, NULL }, |
245 | { "Toggle Sidebar", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" }, | ||
245 | { "Zoom In", SDLK_EQUALS, KMOD_PRIMARY, "zoom.delta arg:10" }, | 246 | { "Zoom In", SDLK_EQUALS, KMOD_PRIMARY, "zoom.delta arg:10" }, |
246 | { "Zoom Out", SDLK_MINUS, KMOD_PRIMARY, "zoom.delta arg:-10" }, | 247 | { "Zoom Out", SDLK_MINUS, KMOD_PRIMARY, "zoom.delta arg:-10" }, |
247 | { "Reset Zoom", SDLK_0, KMOD_PRIMARY, "zoom.set arg:100" }, | 248 | { "Reset Zoom", SDLK_0, KMOD_PRIMARY, "zoom.set arg:100" }, |