From adb2fa739b425304c18748659f816358b8a01cbe Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 23 Aug 2017 13:33:49 +0200 Subject: [PATCH] Correct setting_validation_error/warning and background/border I modified these but forgot to commit them. Contributes to issue CURA-4148. --- resources/themes/cura/styles.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/themes/cura/styles.qml b/resources/themes/cura/styles.qml index b5c4682e63..2bc94fe77c 100755 --- a/resources/themes/cura/styles.qml +++ b/resources/themes/cura/styles.qml @@ -17,11 +17,11 @@ QtObject { { if(control.valueError) { - return Theme.getColor("setting_validation_error"); + return Theme.getColor("setting_validation_error_background"); } else if(control.valueWarning) { - return Theme.getColor("setting_validation_warning"); + return Theme.getColor("setting_validation_warning_background"); } else { @@ -41,11 +41,11 @@ QtObject { { if (control.valueError) { - return Theme.getColor("setting_validation_error_border"); + return Theme.getColor("setting_validation_error"); } else if (control.valueWarning) { - return Theme.getColor("setting_validation_warning_border"); + return Theme.getColor("setting_validation_warning"); } else if (control.hovered) {