1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-24 03:55:23 -04:00

launcher: add ctrl+H/L navigation in grid mode (#2688)

This commit is contained in:
Kangheng Liu
2026-06-23 23:06:38 -04:00
committed by GitHub
parent 14f21b6c6d
commit 774796ada2
@@ -219,6 +219,24 @@ FocusScope {
}
event.accepted = false;
return;
case Qt.Key_L:
if (hasCtrl) {
if (controller.getCurrentSectionViewMode() !== "list") {
controller.selectRight();
}
return;
}
event.accepted = false;
return;
case Qt.Key_H:
if (hasCtrl) {
if (controller.getCurrentSectionViewMode() !== "list") {
controller.selectLeft();
}
return;
}
event.accepted = false;
return;
case Qt.Key_N:
if (hasCtrl) {
controller.selectNextSection();