Fixing newly made issue with PickLocation.
This commit is contained in:
parent
e6de739d0c
commit
27c9fe0473
1 changed files with 6 additions and 3 deletions
|
@ -32,12 +32,10 @@ import eu.ad5001.LogarithmPlotter.Common
|
||||||
|
|
||||||
\sa LogarithmPlotter, LogGraphCanvas
|
\sa LogarithmPlotter, LogGraphCanvas
|
||||||
*/
|
*/
|
||||||
Rectangle {
|
Item {
|
||||||
id: pickerRoot
|
id: pickerRoot
|
||||||
visible: false
|
visible: false
|
||||||
clip: true
|
clip: true
|
||||||
color: sysPalette.window
|
|
||||||
opacity: 0.35
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\qmlsignal PickLocationOverlay::picked(var obj)
|
\qmlsignal PickLocationOverlay::picked(var obj)
|
||||||
|
@ -98,6 +96,11 @@ Rectangle {
|
||||||
*/
|
*/
|
||||||
readonly property bool userPickY: pickY && pickYCheckbox.checked
|
readonly property bool userPickY: pickY && pickYCheckbox.checked
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
color: sysPalette.window
|
||||||
|
opacity: 0.35
|
||||||
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: picker
|
id: picker
|
||||||
|
|
Loading…
Reference in a new issue