From c96a9537d04b7962531e916bf66822d375b19918 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Mon, 23 Mar 2020 13:19:19 +0100 Subject: [PATCH] Fix font color on dark headers --- nymea-app/ui/thingconfiguration/NewThingPage.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nymea-app/ui/thingconfiguration/NewThingPage.qml b/nymea-app/ui/thingconfiguration/NewThingPage.qml index 5699dadc..73020cd3 100644 --- a/nymea-app/ui/thingconfiguration/NewThingPage.qml +++ b/nymea-app/ui/thingconfiguration/NewThingPage.qml @@ -66,6 +66,7 @@ Page { columns: Math.max(1, Math.floor(width / 250)) * 2 Label { text: qsTr("Vendor") + color: app.headerForegroundColor } ComboBox { @@ -93,6 +94,7 @@ Page { } Label { text: qsTr("Type") + color: app.headerForegroundColor } ComboBox { @@ -134,6 +136,7 @@ Page { TextField { id: displayNameFilterField Layout.fillWidth: true + color: app.headerForegroundColor } } }