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

QmlDesigner.propertyEditor: remove checks for undefined

parent d7a403f3
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ QToolButton { ...@@ -26,7 +26,7 @@ QToolButton {
onBackendValueChanged: { onBackendValueChanged: {
setIcon(); setIcon();
} }
property bool isBoundBackend: backendValue === undefinded ? false : backendValue.isBound; property bool isBoundBackend: backendValue.isBound;
onIsBoundBackendChanged: { onIsBoundBackendChanged: {
setIcon(); setIcon();
......
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