mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 18:36:05 +08:00
Add hover cursorShape to open/viewmode buttons and layerslider
This commit is contained in:
parent
6af05b8af7
commit
47c53860fd
@ -29,6 +29,12 @@ Item
|
|||||||
onValueChanged: UM.LayerView.setCurrentLayer(value)
|
onValueChanged: UM.LayerView.setCurrentLayer(value)
|
||||||
|
|
||||||
style: UM.Theme.styles.layerViewSlider
|
style: UM.Theme.styles.layerViewSlider
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
|
@ -366,6 +366,11 @@ UM.MainWindow
|
|||||||
//leftMargin: UM.Theme.sizes.loadfile_margin.width
|
//leftMargin: UM.Theme.sizes.loadfile_margin.width
|
||||||
}
|
}
|
||||||
action: actions.open;
|
action: actions.open;
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Image
|
Image
|
||||||
@ -424,6 +429,11 @@ UM.MainWindow
|
|||||||
|
|
||||||
ExclusiveGroup { id: viewMenuGroup; }
|
ExclusiveGroup { id: viewMenuGroup; }
|
||||||
}
|
}
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Toolbar
|
Toolbar
|
||||||
|
Loading…
x
Reference in New Issue
Block a user