From cf17217a1fa09782b7cf042170e3e91735408a9b Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Mon, 17 Apr 2017 08:46:23 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20offline=20map=20where=20=E2=80=9CSet=20In?= =?UTF-8?q?fo=E2=80=9D=20was=20hidden=20under=20=E2=80=9CAdd=20New=20Set?= =?UTF-8?q?=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/QtLocationPlugin/QMLControl/OfflineMap.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QtLocationPlugin/QMLControl/OfflineMap.qml b/src/QtLocationPlugin/QMLControl/OfflineMap.qml index 7a2642e..c2c449b 100644 --- a/src/QtLocationPlugin/QMLControl/OfflineMap.qml +++ b/src/QtLocationPlugin/QMLControl/OfflineMap.qml @@ -609,7 +609,7 @@ QGCView { anchors.margins: ScreenTools.defaultFontPixelWidth anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right - visible: _map.visible + visible: addNewSetView.visible width: ScreenTools.defaultFontPixelWidth * (ScreenTools.isTinyScreen ? 24 : 28) height: Math.min(parent.height - (anchors.margins * 2), addNewSetFlickable.y + addNewSetColumn.height + addNewSetLabel.anchors.margins) color: Qt.rgba(qgcPal.window.r, qgcPal.window.g, qgcPal.window.b, 0.85)