From fc9a53fb0de0c68c56d7b0cc29f20dce8f8db5e2 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Wed, 20 Aug 2025 12:05:53 -0400 Subject: [PATCH] AppLauncher focus fix --- Modules/AppLauncher/AppLauncher.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Modules/AppLauncher/AppLauncher.qml b/Modules/AppLauncher/AppLauncher.qml index 1650dd6..2d2000c 100644 --- a/Modules/AppLauncher/AppLauncher.qml +++ b/Modules/AppLauncher/AppLauncher.qml @@ -238,14 +238,15 @@ NPanel { bottomPadding: 0 font.bold: true Component.onCompleted: { - contentItem.cursorColor = Color.mOnSurface - contentItem.verticalAlignment = TextInput.AlignVCenter + + // contentItem.cursorColor = Color.mOnSurface + // contentItem.verticalAlignment = TextInput.AlignVCenter // Focus the search bar by default Qt.callLater(() => { searchInput.forceActiveFocus() }) } - onActiveFocusChanged: contentItem.cursorColor = Color.mOnSurface + //onActiveFocusChanged: contentItem.cursorColor = Color.mOnSurface Keys.onDownPressed: selectNext() Keys.onUpPressed: selectPrev()