diff --git a/resources/themes/cura/styles.qml b/resources/themes/cura/styles.qml index 91a512b6db..96bbf03a45 100644 --- a/resources/themes/cura/styles.qml +++ b/resources/themes/cura/styles.qml @@ -15,7 +15,11 @@ QtObject { { if(control.enabled) { - if(control.valueWarning) + if(control.valueError) + { + return Theme.getColor("setting_validation_error"); + } + else if(control.valueWarning) { return Theme.getColor("setting_validation_warning"); } else