From 16cadfeae804885fdd5ce9561883410063d079d3 Mon Sep 17 00:00:00 2001 From: ronoaer Date: Wed, 13 Sep 2023 09:39:17 +0800 Subject: [PATCH] the cursor changes to Qt.PointingHandCursor when hovering over links --- client/ui/qml/Pages2/PageServiceSftpSettings.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/ui/qml/Pages2/PageServiceSftpSettings.qml b/client/ui/qml/Pages2/PageServiceSftpSettings.qml index fead034b9..9287bd20f 100644 --- a/client/ui/qml/Pages2/PageServiceSftpSettings.qml +++ b/client/ui/qml/Pages2/PageServiceSftpSettings.qml @@ -218,6 +218,11 @@ PageType { } + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton + cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor + } } BasicButtonType {