From 1ea47f9caf702abac0d96795b2502e438086aeed Mon Sep 17 00:00:00 2001 From: zeug Date: Sun, 16 Aug 2020 23:50:52 +0100 Subject: Support Ctrl+A in the windows toolkit address bar --- frontends/windows/window.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontends/windows/window.c b/frontends/windows/window.c index e192191bb..750c57703 100644 --- a/frontends/windows/window.c +++ b/frontends/windows/window.c @@ -416,7 +416,11 @@ nsws_window_urlbar_callback(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) /* override messages */ switch (msg) { case WM_CHAR: - if (wparam == 13) { + if (wparam == 1) { + /* handle ^A */ + SendMessage(hwnd, EM_SETSEL, 0, -1); + return 1; + } else if (wparam == 13) { SendMessage(gw->main, WM_COMMAND, IDC_MAIN_LAUNCH_URL, 0); return 0; } -- cgit v1.2.3