UI/Qt: Remove collect garbage shortcut

Leave the debug menu action available without binding Ctrl+Shift+G,
which conflicts with the standard find previous shortcut.
This commit is contained in:
Andreas Kling 2026-05-19 10:58:52 +02:00 committed by Andreas Kling
parent c33d11977c
commit 8a1f855ce8

View file

@ -287,7 +287,6 @@ static void initialize_native_control(WebView::Action& action, QAction& qaction,
break;
case WebView::ActionID::CollectGarbage:
qaction.setIcon(load_icon_from_uri("resource://icons/16x16/trash-can.png"sv));
qaction.setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_G));
break;
default: