From 4b9cc6781ee5a27161d522c04a85c4d6b3a487e8 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Fri, 9 Apr 2010 17:24:00 +0200 Subject: [PATCH] QmlDesigner.propertyEditor: fix geometry editing in non base state It was disabled by accident only layout editing should be disabled --- share/qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml index e8bd1fcfde2..904645bddb1 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/LayoutPane.qml @@ -10,7 +10,6 @@ QScrollArea { content: properyEditorLayout; QFrame { id: properyEditorLayout; - enabled: isBaseState layout: QVBoxLayout { topMargin: 0; bottomMargin: 0; @@ -22,6 +21,7 @@ QScrollArea { } Layout { + enabled: isBaseState id: layoutBox; } QScrollArea { -- GitLab