From 47c53860fd84d0e8005b71db84ab45008d623e57 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Wed, 25 Nov 2015 15:53:38 +0100 Subject: [PATCH] Add hover cursorShape to open/viewmode buttons and layerslider --- plugins/LayerView/LayerView.qml | 6 ++++++ resources/qml/Cura.qml | 10 ++++++++++ 2 files changed, 16 insertions(+) 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