QmlDesigner: Fix alignment in EffectsSection

Change-Id: I55fb53233c1993e1897c010d37fad4bf0c12d326
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
(cherry picked from commit 7df037cba3)
This commit is contained in:
Henning Gruendl
2024-04-26 12:33:25 +02:00
committed by Thomas Hartmann
parent 0a822deed1
commit be10f7efe0

View File

@@ -33,7 +33,7 @@ Section {
if (!root.hasDesignerEffect) if (!root.hasDesignerEffect)
return return
root.model = modelNodeBackend.allChildren(effect[0]) //ids for all effects root.model = modelNodeBackend.allChildren(effect[0]) // ids for all effects
} }
leftPadding: 0 leftPadding: 0
@@ -50,6 +50,8 @@ Section {
} }
SectionLayout { SectionLayout {
x: StudioTheme.Values.sectionLeftPadding
PropertyLabel {} PropertyLabel {}
SecondColumnLayout { SecondColumnLayout {
@@ -483,6 +485,7 @@ Section {
} }
SectionLayout { SectionLayout {
x: StudioTheme.Values.sectionLeftPadding
visible: root.hasDesignerEffect visible: root.hasDesignerEffect
PropertyLabel {} PropertyLabel {}
@@ -504,6 +507,8 @@ Section {
root.invalidate() root.invalidate()
} }
} }
ExpandingSpacer {}
} }
} }
} }