aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2023-01-13 15:53:45 +0100
committerHenning Gruendl <henning.gruendl@qt.io>2023-01-13 15:57:28 +0100
commit4acb5214409d4bba4b58ffee7d8cf71c28c2693a (patch)
tree4316eafc5b68e257fdd7a8554bd1bf479fb83d7f
parentaea09e1d48f2ca0a53adcb5001f579a6d938ab70 (diff)
Fix broken dash pattern editor layoutandroid-automotive
Change-Id: Ie09281401a70957f28e5bd880f628e63223f088f Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/imports/components/designer/DashPatternEditor.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/imports/components/designer/DashPatternEditor.qml b/src/imports/components/designer/DashPatternEditor.qml
index fad1c61..79eff11 100644
--- a/src/imports/components/designer/DashPatternEditor.qml
+++ b/src/imports/components/designer/DashPatternEditor.qml
@@ -96,11 +96,6 @@ GridLayout {
function onSelectionChanged() { parseExpression() }
}
- ExtendedFunctionLogic {
- id: extFuncLogic
- backendValue: root.backendValue
- }
-
ActionIndicator {
id: actionIndicator
myControl: dash01
@@ -109,6 +104,11 @@ GridLayout {
icon.text: extFuncLogic.glyph
enabled: root.enableEditors
onClicked: extFuncLogic.show()
+
+ ExtendedFunctionLogic {
+ id: extFuncLogic
+ backendValue: root.backendValue
+ }
}
DoubleSpinBox {