Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2020-05-13 11:53:03 +0300
committerJaime van Kessel <nallath@gmail.com>2020-05-13 11:53:03 +0300
commit8aabf113d234a4430ebbcbd5d956772b288e3dec (patch)
tree1839eb80bdfff7ca07e9346963e7218898fb51b7 /resources/qml/Toolbar.qml
parentf34e05ac036c139981a9a9c82afd503220e5ffa3 (diff)
Catch mouse events in toolpanel
Fixes #7720
Diffstat (limited to 'resources/qml/Toolbar.qml')
-rw-r--r--resources/qml/Toolbar.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml
index ab32bff619..2e12f720a5 100644
--- a/resources/qml/Toolbar.qml
+++ b/resources/qml/Toolbar.qml
@@ -182,7 +182,7 @@ Item
MouseArea //Catch all mouse events (so scene doesnt handle them)
{
anchors.fill: parent
- acceptedButtons: Qt.NoButton
+ acceptedButtons: Qt.AllButtons
onWheel: wheel.accepted = true
}