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

QmlDesigner.propertyEditor: hide ExpressionEdit if selection changes

See: BAUHAUS-648
parent 43b9d1aa
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,12 @@ QWidget {
height: 40
property bool active: false
property variant backendValue;
property bool selectionFlag: selectionChanged
onSelectionFlagChanged: {
expressionEdit.active = false;
}
onActiveChanged: {
if (active) {
......
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