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>2022-05-02 14:50:02 +0300
committerGitHub <noreply@github.com>2022-05-02 14:50:02 +0300
commit15a480e7a9dc26cd63f1b427af2196a145018812 (patch)
treebce3cb2413b5bac84adfe7f75acbbecf9b646617
parent81a170fb7bd62dcc4ec89e5575f2e785a6936a75 (diff)
parent6f7fbbecf7312348b8d87f809211ed0e28b769a2 (diff)
Merge pull request #12055 from Ultimaker/CURA-9232_fix_menubar_not_catching_events
[CURA-9232] Fix menubar not catching events
-rw-r--r--resources/qml/PrintSetupTooltip.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/qml/PrintSetupTooltip.qml b/resources/qml/PrintSetupTooltip.qml
index 20b9ac8981..e4d322f9d4 100644
--- a/resources/qml/PrintSetupTooltip.qml
+++ b/resources/qml/PrintSetupTooltip.qml
@@ -17,6 +17,8 @@ UM.PointingRectangle
arrowSize: UM.Theme.getSize("default_arrow").width
opacity: 0
+ // This should be disabled when invisible, otherwise it will catch mouse events.
+ enabled: opacity > 0
Behavior on opacity
{