From f9e75ce8897b5514c4aefdb5840a0943ca2585fd Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Tue, 30 Apr 2019 13:37:42 -0400 Subject: [PATCH] Remove debug output Enlarge touch are to dismiss system messages --- src/ui/MainRootWindow.qml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/ui/MainRootWindow.qml b/src/ui/MainRootWindow.qml index 7963d54c4..7f51833de 100644 --- a/src/ui/MainRootWindow.qml +++ b/src/ui/MainRootWindow.qml @@ -29,9 +29,6 @@ ApplicationWindow { minimumHeight: 646 visible: true - onWidthChanged: console.log('W: ' + width) - onHeightChanged: console.log('H: ' + height) - readonly property real _topBottomMargins: ScreenTools.defaultFontPixelHeight * 0.5 readonly property string _mainToolbar: QGroundControl.corePlugin.options.mainToolbarUrl readonly property string _planToolbar: QGroundControl.corePlugin.options.planToolbarUrl @@ -527,7 +524,7 @@ ApplicationWindow { color: qgcPal.alertText MouseArea { anchors.fill: parent - anchors.margins: ScreenTools.isMobile ? -ScreenTools.defaultFontPixelHeight : 0 + anchors.margins: -ScreenTools.defaultFontPixelHeight onClicked: { systemMessageArea.close() } -- 2.22.0