From d02e60a682943cd036964079bed2068a163530cd Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Mon, 10 Nov 2025 09:39:10 +0100 Subject: [PATCH] TextField instead of TextInput --- Modules/Launcher.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/Launcher.qml b/Modules/Launcher.qml index f197a2b..caab205 100644 --- a/Modules/Launcher.qml +++ b/Modules/Launcher.qml @@ -61,15 +61,16 @@ Scope { anchors.fill: parent anchors.margins: 10 - TextInput { + TextField { id: searchInput Layout.fillWidth: true Layout.preferredHeight: 30 Layout.leftMargin: 5 - font.pixelSize: 20 color: "white" horizontalAlignment: Text.AlignLeft echoMode: TextInput.Normal + placeholderText: qsTr("Search applications...") + background: null cursorDelegate: Rectangle { id: cursor