From 25db711adc2878248a3273ecf91cebdbe04f5fd7 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 10 Oct 2019 12:57:27 +0200 Subject: [PATCH] Fix tooltips absorbed mouseclicks for view-buttons. --- resources/qml/ViewOrientationControls.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/qml/ViewOrientationControls.qml b/resources/qml/ViewOrientationControls.qml index de594ac008..97f2bb9400 100644 --- a/resources/qml/ViewOrientationControls.qml +++ b/resources/qml/ViewOrientationControls.qml @@ -25,6 +25,7 @@ Row { anchors.fill: parent text: catalog.i18nc("@info:tooltip", "3D View") + acceptedButtons: Qt.NoButton } } @@ -37,6 +38,7 @@ Row { anchors.fill: parent text: catalog.i18nc("@info:tooltip", "Front View") + acceptedButtons: Qt.NoButton } } @@ -49,6 +51,7 @@ Row { anchors.fill: parent text: catalog.i18nc("@info:tooltip", "Top View") + acceptedButtons: Qt.NoButton } } @@ -61,6 +64,7 @@ Row { anchors.fill: parent text: catalog.i18nc("@info:tooltip", "Left View") + acceptedButtons: Qt.NoButton } } @@ -73,6 +77,7 @@ Row { anchors.fill: parent text: catalog.i18nc("@info:tooltip", "Right View") + acceptedButtons: Qt.NoButton } } }