From c14eee172fc9bc91f45ad081b9b07b662197daa8 Mon Sep 17 00:00:00 2001 From: dogmaphobic Date: Fri, 6 May 2016 14:22:41 -0400 Subject: [PATCH] Change background of the Critical Message Window --- src/ui/MainWindowInner.qml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/ui/MainWindowInner.qml b/src/ui/MainWindowInner.qml index 7a8523b2f..9d5754b42 100644 --- a/src/ui/MainWindowInner.qml +++ b/src/ui/MainWindowInner.qml @@ -354,7 +354,7 @@ Item { color: Qt.rgba(0,0,0,0.8) visible: false radius: ScreenTools.defaultFontPixelHeight * 0.5 - border.color: qgcPal.text + border.color: "#808080" border.width: 2 anchors.horizontalCenter: parent.horizontalCenter anchors.top: parent.top @@ -381,9 +381,9 @@ Item { anchors.margins: ScreenTools.defaultFontPixelHeight anchors.top: parent.top anchors.right: parent.right - width: ScreenTools.defaultFontPixelHeight * 1.5 + width: ScreenTools.isTinyScreen ? ScreenTools.defaultFontPixelHeight * 1.5 : ScreenTools.defaultFontPixelHeight height: width - sourceSize.height: height + sourceSize.height: width source: "/res/XDelete.svg" fillMode: Image.PreserveAspectFit mipmap: true @@ -420,13 +420,13 @@ Item { width: mainWindow.width * 0.55 height: ScreenTools.defaultFontPixelHeight * 6 - color: qgcPal.window + color: "#eecc44" visible: false radius: ScreenTools.defaultFontPixelHeight * 0.5 anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom anchors.bottomMargin: ScreenTools.defaultFontPixelHeight - border.color: qgcPal.text + border.color: "#808080" border.width: 2 MouseArea { @@ -456,7 +456,7 @@ Item { font.pointSize: ScreenTools.defaultFontPointSize font.family: ScreenTools.demiboldFontFamily wrapMode: TextEdit.WordWrap - color: qgcPal.warningText + color: "black" } } @@ -466,12 +466,12 @@ Item { anchors.margins: ScreenTools.defaultFontPixelHeight anchors.top: parent.top anchors.right: parent.right - width: ScreenTools.defaultFontPixelHeight * 1.5 + width: ScreenTools.isTinyScreen ? ScreenTools.defaultFontPixelHeight * 1.5 : ScreenTools.defaultFontPixelHeight height: width - sourceSize.height: height + sourceSize.height: width source: "/res/XDelete.svg" fillMode: Image.PreserveAspectFit - color: qgcPal.warningText + color: "black" MouseArea { anchors.fill: parent onClicked: { @@ -485,13 +485,13 @@ Item { anchors.margins: ScreenTools.defaultFontPixelHeight anchors.bottom: parent.bottom anchors.right: parent.right - width: ScreenTools.defaultFontPixelHeight * 1.5 - height: ScreenTools.defaultFontPixelHeight * 1.5 - sourceSize.height: height + width: ScreenTools.isTinyScreen ? ScreenTools.defaultFontPixelHeight * 1.5 : ScreenTools.defaultFontPixelHeight + height: width + sourceSize.height: width source: "/res/ArrowDown.svg" fillMode: Image.PreserveAspectFit visible: criticalMessageText.lineCount > 5 - color: qgcPal.warningText + color: "black" MouseArea { anchors.fill: parent -- 2.22.0