From e672a4a471a53f3933771562de81869ef10631a6 Mon Sep 17 00:00:00 2001 From: Vladyslav Miachkov Date: Tue, 14 May 2024 16:35:40 +0300 Subject: [PATCH] Change mouse icon on link hover --- client/ui/qml/Controls2/PopupType.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/ui/qml/Controls2/PopupType.qml b/client/ui/qml/Controls2/PopupType.qml index dfc8ebbba..fb0f0c3af 100644 --- a/client/ui/qml/Controls2/PopupType.qml +++ b/client/ui/qml/Controls2/PopupType.qml @@ -62,6 +62,12 @@ Popup { } text: root.text + + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton + cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor + } } Item {