uiux(StatusIconTabButton): change cursor on component hover

This commit is contained in:
Pascal Precht 2021-01-22 11:42:19 +01:00 committed by Iuri Matias
parent 4fbe1f202f
commit f9699b7ca0
1 changed files with 6 additions and 0 deletions

View File

@ -57,4 +57,10 @@ TabButton {
color: hovered ? Style.current.secondaryBackground : "transparent"
radius: control.width / 2
}
MouseArea {
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onPressed: mouse.accepted = false
}
}