From e5783fb6d0f973a4bed8c09ea8e16fe0e6aca48f Mon Sep 17 00:00:00 2001 From: Aleksei German Date: Wed, 4 Nov 2020 11:26:09 +0100 Subject: [PATCH] QmlDesigner Fix for semicolon Change-Id: I2cf3fa6186f7baaf05d243ef4e7d67e88469b5d9 Reviewed-by: Cristian Adam --- .../components/propertyeditor/propertyeditorvalue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp index 106b68562dc..890629e4fd5 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.cpp @@ -301,7 +301,7 @@ bool PropertyEditorValue::isAvailable() const const bool itemHasChildren = QmlDesigner::QmlItemNode(m_modelNode).hasChildren(); if (itemHasChildren) - return allowedItemProps.allowChildren + return allowedItemProps.allowChildren; return true; }