From f8e5e9f675e01373bd82115f6a50777e7e2ed6fa Mon Sep 17 00:00:00 2001 From: "vladimir.kuznetsov" Date: Mon, 11 Sep 2023 16:48:56 +0500 Subject: [PATCH] fixed display of cursorShape for all mouseArea --- client/ui/qml/Controls2/PageType.qml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/client/ui/qml/Controls2/PageType.qml b/client/ui/qml/Controls2/PageType.qml index 193fbcf2..2c176b40 100644 --- a/client/ui/qml/Controls2/PageType.qml +++ b/client/ui/qml/Controls2/PageType.qml @@ -7,15 +7,16 @@ Item { property StackView stackView: StackView.view - MouseArea { - z: 99 - anchors.fill: parent +// MouseArea { +// id: globalMouseArea +// z: 99 +// anchors.fill: parent - enabled: true +// enabled: true - onPressed: function(mouse) { - forceActiveFocus() - mouse.accepted = false - } - } +// onPressed: function(mouse) { +// forceActiveFocus() +// mouse.accepted = false +// } +// } }