From de617fb1185c8f9f7f6d6e55d212ed66866a9092 Mon Sep 17 00:00:00 2001 From: boutinb Date: Thu, 5 Dec 2024 11:19:58 +0100 Subject: [PATCH] Replace controlMinWidth by fieldWidth in VariablesForm --- QMLComponents/components/JASP/Controls/VariablesForm.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QMLComponents/components/JASP/Controls/VariablesForm.qml b/QMLComponents/components/JASP/Controls/VariablesForm.qml index 00c3e0297a..fc7bc93484 100644 --- a/QMLComponents/components/JASP/Controls/VariablesForm.qml +++ b/QMLComponents/components/JASP/Controls/VariablesForm.qml @@ -111,7 +111,7 @@ VariablesFormBase else if (isControlComboBox && widthSetByForm(control)) { control.setLabelAbove = true - control.controlMinWidth = Qt.binding(function() {return variablesForm.listWidth; }) + control.fieldWidth = Qt.binding(function() {return variablesForm.listWidth; }) } }