Skip to content
Snippets Groups Projects
Commit 81abc2ce authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

Qml Designer: color adjustment in property editor

parent b2065f58
No related branches found
No related tags found
No related merge requests found
......@@ -22,17 +22,17 @@ QCheckBox { //This is a special CheckBox that does color coding for states
Script {
function evaluate() {
if (baseStateFlag) {
if (backendValue.isInModel)
if (baseStateFlag) {
if (backendValue != null && backendValue.isInModel)
CheckBox.setStyleSheet("color: white;");
else
CheckBox.setStyleSheet("color: gray;");
} else {
if (backendValue.IsInSubState)
CheckBox.setStyleSheet("color: blue;");
else
CheckBox.setStyleSheet("color: gray;");
}
}
else
CheckBox.setStyleSheet("color: gray;");
} else {
if (backendValue != null && backendValue.isInSubState)
CheckBox.setStyleSheet("color: #7799FF;");
else
CheckBox.setStyleSheet("color: gray;");
}
}
}
}
......@@ -31,7 +31,7 @@ QWidget { //This is a special DoubleSpinBox that does color coding for states
DoubleSpinBox.setStyleSheet("color: gray;");
} else {
if (backendValue != null && backendValue.isInSubState)
DoubleSpinBox.setStyleSheet("color: blue;");
DoubleSpinBox.setStyleSheet("color: #7799FF;");
else
DoubleSpinBox.setStyleSheet("color: gray;");
}
......
......@@ -29,7 +29,7 @@ QWidget { //This is a special SpinBox that does color coding for states
SpinBox.setStyleSheet("color: gray;");
} else {
if (backendValue != null && backendValue.isInSubState)
SpinBox.setStyleSheet("color: blue;");
SpinBox.setStyleSheet("color: #7799FF;");
else
SpinBox.setStyleSheet("color: gray;");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment