From 37024eb91da6c3984c59f90a8cec3a3344693e22 Mon Sep 17 00:00:00 2001 From: ronoaer Date: Tue, 26 Sep 2023 17:23:35 +0800 Subject: [PATCH] updated cursorshape of cardtype to Qt.PointingHandCursor --- client/ui/qml/Controls2/CardType.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/client/ui/qml/Controls2/CardType.qml b/client/ui/qml/Controls2/CardType.qml index 4b94cb1ae..8429acb8b 100644 --- a/client/ui/qml/Controls2/CardType.qml +++ b/client/ui/qml/Controls2/CardType.qml @@ -123,4 +123,11 @@ RadioButton { Layout.bottomMargin: 16 } } + + MouseArea { + anchors.fill: parent + + cursorShape: Qt.PointingHandCursor + enabled: false + } }