fixed bug: splitview doesn't have a cursorshape
This commit is contained in:
parent
3c2f74ae66
commit
0a55062cd0
1 changed files with 9 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue