Skip to content

Commit

Permalink
Merge pull request #323 from amnezia-vpn/bugfix/linktext_cursor_sftp
Browse files Browse the repository at this point in the history
the cursor changes to Qt.PointingHandCursor when hovering over links
  • Loading branch information
Nethius committed Sep 13, 2023
2 parents f11c65c + 16cadfe commit 154044e
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 154044e

Please sign in to comment.