Fix font color on dark headers

This commit is contained in:
Michael Zanetti 2020-03-23 13:19:19 +01:00
parent 736666e6d4
commit c96a9537d0

View File

@ -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
}
}
}