From 70df0b0bc8ea2764ab0073ccf49c43a7903338b1 Mon Sep 17 00:00:00 2001 From: demmm Date: Tue, 29 Jun 2021 17:41:07 +0200 Subject: [PATCH] [localeq] prevent MouseArea from stealing all map interaction bug introduced with Qt 5.15 KDE patches makes near impossible to set location adding - 5 seems to fix, otherwise the coordinates label will have to be removed --- src/modules/localeq/Map.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/localeq/Map.qml b/src/modules/localeq/Map.qml index 845f16ea3..5972b5c15 100644 --- a/src/modules/localeq/Map.qml +++ b/src/modules/localeq/Map.qml @@ -168,7 +168,7 @@ Column { hoverEnabled: true property var coordinate: map.toCoordinate(Qt.point(mouseX, mouseY)) Label { - x: parent.mouseX - width + x: parent.mouseX - width -5 y: parent.mouseY - height - 5 text: "%1, %2".arg( parent.coordinate.latitude).arg(parent.coordinate.longitude)