From 2b2977de4afd6ab3a8b094fbb73e365d1f39a2f0 Mon Sep 17 00:00:00 2001 From: bbedward Date: Tue, 20 Jan 2026 18:02:23 -0500 Subject: [PATCH] launcher v2: smarter right/left arrow key handler --- quickshell/Modals/DankLauncherV2/LauncherContent.qml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/quickshell/Modals/DankLauncherV2/LauncherContent.qml b/quickshell/Modals/DankLauncherV2/LauncherContent.qml index 52eac124..19007684 100644 --- a/quickshell/Modals/DankLauncherV2/LauncherContent.qml +++ b/quickshell/Modals/DankLauncherV2/LauncherContent.qml @@ -151,10 +151,18 @@ FocusScope { controller.selectPageUp(8); return; case Qt.Key_Right: - controller.selectRight(); + if (controller.getCurrentSectionViewMode() !== "list") { + controller.selectRight(); + return; + } + event.accepted = false; return; case Qt.Key_Left: - controller.selectLeft(); + if (controller.getCurrentSectionViewMode() !== "list") { + controller.selectLeft(); + return; + } + event.accepted = false; return; case Qt.Key_J: if (hasCtrl) {