From 27c9fe0473f61cec7758108dff0a4d8d7f5b6468 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Sun, 27 Oct 2024 00:46:42 +0200 Subject: [PATCH] Fixing newly made issue with PickLocation. --- .../eu/ad5001/LogarithmPlotter/Overlay/PickLocation.qml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Overlay/PickLocation.qml b/runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Overlay/PickLocation.qml index f005756..60eb90e 100644 --- a/runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Overlay/PickLocation.qml +++ b/runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Overlay/PickLocation.qml @@ -32,12 +32,10 @@ import eu.ad5001.LogarithmPlotter.Common \sa LogarithmPlotter, LogGraphCanvas */ -Rectangle { +Item { id: pickerRoot visible: false clip: true - color: sysPalette.window - opacity: 0.35 /*! \qmlsignal PickLocationOverlay::picked(var obj) @@ -98,6 +96,11 @@ Rectangle { */ readonly property bool userPickY: pickY && pickYCheckbox.checked + Rectangle { + anchors.fill: parent + color: sysPalette.window + opacity: 0.35 + } MouseArea { id: picker