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

QmlDesigner.propertyEditor: avoid warnings about colors

parent e94e6249
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ QExtGroupBox {
property var finished;
property var backendColor
property var color: backendColor === undefined ? "#000000" : backendColor.value
property var color: (backendColor === undefined || backendColor.value === undefined) ? "#000000" : backendColor.value
property var oldMaximumHeight;
property var startupCollapse: selectionChanged === undefined ? false : selectionChanged;
......
......@@ -23,7 +23,7 @@ GroupBox {
visible: showStyleColor
finished: finishedNotify
backendColor: backendValues.styleColor
backendColor: (backendValues.styleColor === undefined) ? dummyBackendValue : backendValues.styleColor
}
ColorGroupBox {
......@@ -31,7 +31,7 @@ GroupBox {
visible: showSelectionColor
finished: finishedNotify
backendColor: backendValues.selectionColor
backendColor: (backendValues.selectionColor === undefined) ? dummyBackendValue : backendValues.selectionColor
}
ColorGroupBox {
......@@ -40,7 +40,7 @@ GroupBox {
finished: finishedNotify
backendColor: backendValues.selectedTextColor
backendColor: (backendValues.selectedTextColor === undefined) ? dummyBackendValue : backendValues.selectedTextColor
}
}
......
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