[PlasmaComponents3 ComboBox] Fix textColor

Uses the one from ColorScope rather than Kirigami.
Kirigami.Theme isn't used in any other Plasma Components 3 and the opacity already changes for when it's disabled

Differential Revision: https://phabricator.kde.org/D20070
This commit is contained in:
Kai Uwe Broulik 2019-04-01 10:12:06 +02:00
parent 89724dbd8c
commit d868804a7f

View File

@ -141,7 +141,7 @@ T.ComboBox {
// Work around Qt bug where NativeRendering breaks for non-integer scale factors
// https://bugreports.qt.io/browse/QTBUG-67007
renderType: Screen.devicePixelRatio % 1 !== 0 ? Text.QtRendering : Text.NativeRendering
color: control.enabled ? Kirigami.Theme.textColor : Kirigami.Theme.disabledTextColor
color: PlasmaCore.ColorScope.textColor
selectionColor: Kirigami.Theme.highlightColor
selectedTextColor: Kirigami.Theme.highlightedTextColor