Skip to content

Commit

Permalink
the cursor changes to Qt.PointingHandCursor when hovering over links
Browse files Browse the repository at this point in the history
  • Loading branch information
ronoaer committed Sep 13, 2023
1 parent f11c65c commit 16cadfe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client/ui/qml/Pages2/PageServiceSftpSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ PageType {
}


MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
}

BasicButtonType {
Expand Down

0 comments on commit 16cadfe

Please sign in to comment.