From 6602fa5d15a964969a55705c74e01f635f5d3e68 Mon Sep 17 00:00:00 2001 From: zac Date: Thu, 7 Aug 2025 09:06:31 +1000 Subject: [PATCH] UI/Qt: Add Alt+D as a shortcut to focus the location editor --- UI/Qt/Tab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Qt/Tab.cpp b/UI/Qt/Tab.cpp index 100b3219f6a..167605434cd 100644 --- a/UI/Qt/Tab.cpp +++ b/UI/Qt/Tab.cpp @@ -76,7 +76,7 @@ Tab::Tab(BrowserWindow* window, RefPtr parent_client, }); auto* focus_location_editor_action = new QAction("Edit Location", this); - focus_location_editor_action->setShortcut(QKeySequence("Ctrl+L")); + focus_location_editor_action->setShortcuts({ QKeySequence("Ctrl+L"), QKeySequence("Alt+D") }); addAction(focus_location_editor_action); m_layout->addWidget(m_toolbar);