fixed bug: splitview doesn't have a cursorshape

This commit is contained in:
Chris Cochrun 2023-11-20 06:40:41 -06:00
parent 3c2f74ae66
commit 0a55062cd0

View file

@ -69,7 +69,7 @@ Controls.Page {
Controls.SplitView {
id: splitMainView
anchors.fill: parent
handle: Item{
handle: Item {
implicitWidth: Kirigami.Units.gridUnit / 2
Rectangle {
height: parent.height
@ -77,6 +77,14 @@ Controls.Page {
width: parent.width / 4
color: parent.Controls.SplitHandle.hovered ? Kirigami.Theme.hoverColor : "#00000000"
}
MouseArea {
anchors.fill: parent
enabled: false
hoverEnabled: true
cursorShape: Qt.SizeHorCursor
propagateComposedEvents: true
}
}
Presenter.ServiceList {