the cursor changes to Qt.PointingHandCursor when hovering over links

This commit is contained in:
ronoaer 2023-09-13 09:39:17 +08:00
parent f11c65c393
commit 16cadfeae8

View file

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