From be10f7efe022046d9f56f98035e7e5911cf24c02 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Fri, 26 Apr 2024 12:33:25 +0200 Subject: [PATCH] QmlDesigner: Fix alignment in EffectsSection Change-Id: I55fb53233c1993e1897c010d37fad4bf0c12d326 Reviewed-by: Thomas Hartmann (cherry picked from commit 7df037cba3fc142f9e5032b14190c85e2432ef3c) --- .../propertyEditorQmlSources/QtQuick/EffectsSection.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml index 2b7543f1d99..fca041fc19e 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml @@ -33,7 +33,7 @@ Section { if (!root.hasDesignerEffect) return - root.model = modelNodeBackend.allChildren(effect[0]) //ids for all effects + root.model = modelNodeBackend.allChildren(effect[0]) // ids for all effects } leftPadding: 0 @@ -50,6 +50,8 @@ Section { } SectionLayout { + x: StudioTheme.Values.sectionLeftPadding + PropertyLabel {} SecondColumnLayout { @@ -483,6 +485,7 @@ Section { } SectionLayout { + x: StudioTheme.Values.sectionLeftPadding visible: root.hasDesignerEffect PropertyLabel {} @@ -504,6 +507,8 @@ Section { root.invalidate() } } + + ExpandingSpacer {} } } }