diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-11-14 11:07:57 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-11-14 11:07:57 +0200 |
commit | 6d0406edd93a211e4e95265de3699f83e22361bf (patch) | |
tree | dcf4ee90b9f40c57e55e553e895e3f250b4d0823 /src/ui/window.c | |
parent | 70b1483eb567dd44b603d0f4f5338b7df0e99959 (diff) |
Fixed copying the URL input field contents
Diffstat (limited to 'src/ui/window.c')
-rw-r--r-- | src/ui/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c index 2b2dae46..115dd04b 100644 --- a/src/ui/window.c +++ b/src/ui/window.c | |||
@@ -125,7 +125,7 @@ static const iMenuItem fileMenuItems[] = { | |||
125 | }; | 125 | }; |
126 | 126 | ||
127 | static const iMenuItem editMenuItems[] = { | 127 | static const iMenuItem editMenuItems[] = { |
128 | { "Copy Source Text", SDLK_c, KMOD_PRIMARY, "copy" }, | 128 | { "Copy", SDLK_c, KMOD_PRIMARY, "copy" }, |
129 | { "Copy Link to Page", SDLK_c, KMOD_PRIMARY | KMOD_SHIFT, "document.copylink" }, | 129 | { "Copy Link to Page", SDLK_c, KMOD_PRIMARY | KMOD_SHIFT, "document.copylink" }, |
130 | { "---", 0, 0, NULL }, | 130 | { "---", 0, 0, NULL }, |
131 | { "Find", SDLK_f, KMOD_PRIMARY, "focus.set id:find.input" }, | 131 | { "Find", SDLK_f, KMOD_PRIMARY, "focus.set id:find.input" }, |