summaryrefslogtreecommitdiff
path: root/src/ui
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-27 07:40:33 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-27 07:40:33 +0200
commit4083bcc2e39ee6a00e6342f7dca72e52f660e2c0 (patch)
treea7c876e966578746bbed37e5bf484e515b3817c4 /src/ui
parentb32cc984167394574ba860ce15dcfd7b81967eae (diff)
Built-in hot key binding for Refresh
This shouldn't override F5/⌘R in menus. IssueID #223
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/keys.c b/src/ui/keys.c
index beb5f386..456ca928 100644
--- a/src/ui/keys.c
+++ b/src/ui/keys.c
@@ -236,7 +236,7 @@ static const struct { int id; iMenuItem bind; int flags; } defaultBindings_[] =
236 { 1007, { NULL, SDLK_AC_BACK, 0, "navigate.back" }, 0 }, 236 { 1007, { NULL, SDLK_AC_BACK, 0, "navigate.back" }, 0 },
237 { 1008, { NULL, SDLK_AC_FORWARD, 0, "navigate.forward" }, 0 }, 237 { 1008, { NULL, SDLK_AC_FORWARD, 0, "navigate.forward" }, 0 },
238 { 1009, { NULL, SDLK_AC_STOP, 0, "document.stop" }, 0 }, 238 { 1009, { NULL, SDLK_AC_STOP, 0, "document.stop" }, 0 },
239 { 1010, { NULL, SDLK_AC_REFRESH, 0, "navigate.reload" }, 0 }, 239 { 1010, { NULL, SDLK_AC_REFRESH, 0, "document.reload" }, 0 },
240 { 1011, { NULL, SDLK_AC_BOOKMARKS, 0, "sidebar.mode arg:0 toggle:1" }, 0 }, 240 { 1011, { NULL, SDLK_AC_BOOKMARKS, 0, "sidebar.mode arg:0 toggle:1" }, 0 },
241}; 241};
242 242