diff --git a/quickshell/Modals/DankLauncherV2/LauncherContent.qml b/quickshell/Modals/DankLauncherV2/LauncherContent.qml index 588415c2..af5276f1 100644 --- a/quickshell/Modals/DankLauncherV2/LauncherContent.qml +++ b/quickshell/Modals/DankLauncherV2/LauncherContent.qml @@ -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();