From 457edaa4d28c6d26a8f6091642129c5980ec6824 Mon Sep 17 00:00:00 2001 From: Aatos Majava Date: Thu, 24 Jun 2021 18:41:16 +0300 Subject: [PATCH] Browser: Add alternate shortcut F6 for focusing the location box --- Userland/Applications/Browser/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp index 875d364a23..5e626ac8aa 100644 --- a/Userland/Applications/Browser/Tab.cpp +++ b/Userland/Applications/Browser/Tab.cpp @@ -281,7 +281,7 @@ Tab::Tab(BrowserWindow& window, Type type) } auto focus_location_box_action = GUI::Action::create( - "Focus location box", { Mod_Ctrl, Key_L }, [this](auto&) { + "Focus location box", { Mod_Ctrl, Key_L }, Key_F6, [this](auto&) { m_location_box->select_all(); m_location_box->set_focus(true); },