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

QmlDesigner.propertyEditor: show emtpy instead of empty string

parent 43ccd3a4
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ QFrame {
id: standardMode;
toolTip: "special properties";
//iconFromFile: "images/rect-icon.png";
text: backendValues === undefined ? "empty" : backendValues.className.value
text: backendValues === undefined || backendValues.className === undefined || backendValues.className == "empty" ? "empty" : backendValues.className.value
onClicked: {
extendedMode.checked = false;
layoutMode.checked = false;
......
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