QmlDesigner.propertyEditor: hide ExpressionEdit if selection changes

See: BAUHAUS-648
This commit is contained in:
Thomas Hartmann
2010-04-29 09:49:32 +02:00
parent 43b9d1aad1
commit a98a6d05e4

View File

@@ -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) {