1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 13:32:50 -05:00

launcher: F10 as alt for menu key

This commit is contained in:
bbedward
2026-01-05 14:58:50 -05:00
parent 03a985228d
commit 8386b40c50

View File

@@ -151,7 +151,7 @@ Item {
fileSearchController.openSelected(); fileSearchController.openSelected();
} }
event.accepted = true; event.accepted = true;
} else if (event.key === Qt.Key_Menu) { } else if (event.key === Qt.Key_Menu || event.key == Qt.Key_F10) {
if (searchMode === "apps" && appLauncher.model.count > 0) { if (searchMode === "apps" && appLauncher.model.count > 0) {
const selectedApp = appLauncher.model.get(appLauncher.selectedIndex); const selectedApp = appLauncher.model.get(appLauncher.selectedIndex);
const menu = usePopupContextMenu ? popupContextMenu : layerContextMenuLoader.item; const menu = usePopupContextMenu ? popupContextMenu : layerContextMenuLoader.item;