From b97c2d1d4da1e7b468badea79f32f6bb9ca7509e Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:38:39 +0100 Subject: [PATCH] styledcombobox: pointing hand cursor shape --- .../ii/modules/common/widgets/StyledComboBox.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml index 944aaf8c1..1909ad40c 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml @@ -26,6 +26,12 @@ ComboBox { Behavior on color { animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this) } + + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton + cursorShape: Qt.PointingHandCursor + } } indicator: MaterialSymbol { @@ -95,6 +101,12 @@ ComboBox { Behavior on color { animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this) } + + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton + cursorShape: Qt.PointingHandCursor + } } contentItem: RowLayout {