From 01b38be6afbe660e3b9f9e136870a76afb69bf31 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 24 May 2025 13:31:36 +0800 Subject: internal: fix binding loops --- modules/launcher/Content.qml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'modules/launcher/Content.qml') diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index be3667d..54cc872 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -50,6 +50,8 @@ Item { anchors.bottom: parent.bottom anchors.margins: root.padding + implicitHeight: Math.max(searchIcon.implicitHeight, search.implicitHeight, clearIcon.implicitHeight) + MaterialIcon { id: searchIcon @@ -139,6 +141,7 @@ Item { anchors.fill: parent hoverEnabled: true + cursorShape: search.text ? Qt.PointingHandCursor : undefined onEntered: hovered = true onExited: hovered = false -- cgit v1.2.3-freya