Merge pull request #323 from amnezia-vpn/bugfix/linktext_cursor_sftp

the cursor changes to Qt.PointingHandCursor when hovering over links
This commit is contained in:
Nethius 2023-09-13 20:47:21 +05:00 committed by GitHub
commit 154044e32a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -218,6 +218,11 @@ PageType {
}
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
}
BasicButtonType {