diff --git a/plugins/LayerView/LayerView.qml b/plugins/LayerView/LayerView.qml index 183046e05e..ad363af4aa 100644 --- a/plugins/LayerView/LayerView.qml +++ b/plugins/LayerView/LayerView.qml @@ -29,12 +29,6 @@ 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 e8f407ffa2..c4281fdd2b 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -365,11 +365,6 @@ UM.MainWindow //leftMargin: UM.Theme.sizes.loadfile_margin.width } action: actions.open; - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } } Image @@ -428,11 +423,6 @@ UM.MainWindow ExclusiveGroup { id: viewMenuGroup; } } - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } } Toolbar diff --git a/resources/qml/ProfileSetup.qml b/resources/qml/ProfileSetup.qml index 2e22b06a24..5f54f04228 100644 --- a/resources/qml/ProfileSetup.qml +++ b/resources/qml/ProfileSetup.qml @@ -96,12 +96,6 @@ Item{ tooltip: UM.MachineManager.activeProfile style: UM.Theme.styles.sidebar_header_button - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - menu: Menu { id: profileSelectionMenu diff --git a/resources/qml/SaveButton.qml b/resources/qml/SaveButton.qml index c51eb9f7bb..c20aa905fc 100644 --- a/resources/qml/SaveButton.qml +++ b/resources/qml/SaveButton.qml @@ -86,12 +86,6 @@ Rectangle { UM.OutputDeviceManager.requestWriteToDevice(UM.OutputDeviceManager.activeDevice, Printer.jobName) } - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - style: ButtonStyle { background: Rectangle { //opacity: control.enabled ? 1.0 : 0.5 @@ -133,12 +127,6 @@ Rectangle { enabled: base.progress > 0.99 && base.activity == true //iconSource: UM.Theme.icons[UM.OutputDeviceManager.activeDeviceIconName]; - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - style: ButtonStyle { background: Rectangle { id: deviceSelectionIcon diff --git a/resources/qml/Sidebar.qml b/resources/qml/Sidebar.qml index 3428996bf4..570dc8e5fe 100644 --- a/resources/qml/Sidebar.qml +++ b/resources/qml/Sidebar.qml @@ -118,12 +118,6 @@ Rectangle checked: base.currentModeIndex == index onClicked: base.currentModeIndex = index - MouseArea { - anchors.fill: parent - cursorShape: checked ? Qt.ArrowCursor : Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - style: ButtonStyle { background: Rectangle { border.color: control.checked ? UM.Theme.colors.toggle_checked_border : diff --git a/resources/qml/SidebarHeader.qml b/resources/qml/SidebarHeader.qml index c01e3a144c..38d129c6bb 100644 --- a/resources/qml/SidebarHeader.qml +++ b/resources/qml/SidebarHeader.qml @@ -66,12 +66,6 @@ Item anchors.verticalCenter: parent.verticalCenter style: UM.Theme.styles.sidebar_header_button - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - menu: Menu { id: machineSelectionMenu diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index ba51f69d6b..e37adaf338 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -121,7 +121,6 @@ Item } } hoverEnabled: true - cursorShape: (infillListView.activeIndex != index) ? Qt.PointingHandCursor : Qt.ArrowCursor } } Label{ @@ -194,12 +193,6 @@ Item text: catalog.i18nc("@option:check","Enable Skirt Adhesion"); style: UM.Theme.styles.checkbox; - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - checked: UM.ActiveProfile.valid ? UM.ActiveProfile.settingValues.adhesion_type == "brim" : false; onClicked: { @@ -215,12 +208,6 @@ Item text: catalog.i18nc("@option:check","Enable Support"); style: UM.Theme.styles.checkbox; - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - acceptedButtons: Qt.NoButton - } - checked: UM.ActiveProfile.valid ? UM.ActiveProfile.settingValues.support_enable : false; onClicked: { diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index e440cd46da..895144e559 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -41,7 +41,6 @@ Item { //just catch the click so we do not trigger that behaviour. MouseArea { anchors.fill: parent; - cursorShape: Qt.PointingHandCursor onClicked: { parent.checked ? UM.Controller.setActiveTool(null) : UM.Controller.setActiveTool(model.id); //base.activeY = parent.y