diff options
Diffstat (limited to 'modules/launcher')
| -rw-r--r-- | modules/launcher/Content.qml | 3 |
1 files changed, 3 insertions, 0 deletions
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 |