https://bugs.kde.org/show_bug.cgi?id=438854
--- Comment #10 from Nate Graham <n...@kde.org> --- In the old PC2 version (plasmastyle/TextFieldStyle.qml), we had this: textColor: control.enabled ? PlasmaCore.Theme.viewTextColor : Qt.rgba(PlasmaCore.Theme.viewTextColor.r, PlasmaCore.Theme.viewTextColor.g, PlasmaCore.Theme.viewTextColor.b, 0.6) selectionColor: PlasmaCore.Theme.highlightColor selectedTextColor: PlasmaCore.Theme.viewHighlightedTextColor placeholderTextColor: Qt.rgba(PlasmaCore.Theme.viewTextColor.r, PlasmaCore.Theme.viewTextColor.g, PlasmaCore.Theme.viewTextColor.b, 0.5) In the new PC3 version (plasmacomponents3/TextField.qml )we have this: PlasmaCore.ColorScope.colorGroup: PlasmaCore.Theme.ViewColorGroup color: PlasmaCore.Theme.textColor placeholderTextColor: PlasmaCore.Theme.disabledTextColor selectionColor: PlasmaCore.Theme.highlightColor selectedTextColor: PlasmaCore.Theme.highlightedTextColor So both are attempting to use the view color group's text color, rather than the window color group's text color. However only the PC2 version is succeeding at it. Ensuring that `PlasmaCore.ColorScope.inherit: false` is set in the PC3 version does not have any effect, so I don't think it's an accidental inheritance issue. -- You are receiving this mail because: You are watching all bug changes.