diff --git a/plugins/LayerView/LayerView.qml b/plugins/LayerView/LayerView.qml index ad363af4aa..183046e05e 100644 --- a/plugins/LayerView/LayerView.qml +++ b/plugins/LayerView/LayerView.qml @@ -29,6 +29,12 @@ Item onValueChanged: UM.LayerView.setCurrentLayer(value) style: UM.Theme.styles.layerViewSlider + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + acceptedButtons: Qt.NoButton + } + } Rectangle { anchors.left: parent.left diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index c7871395b8..53b5488d80 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -366,6 +366,11 @@ UM.MainWindow //leftMargin: UM.Theme.sizes.loadfile_margin.width } action: actions.open; + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + acceptedButtons: Qt.NoButton + } } Image @@ -424,6 +429,11 @@ UM.MainWindow ExclusiveGroup { id: viewMenuGroup; } } + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + acceptedButtons: Qt.NoButton + } } Toolbar