From 9c85a5d047ea0a93c0c97d41e1c3dd1248590e18 Mon Sep 17 00:00:00 2001 From: olliw42 Date: Wed, 6 Nov 2019 06:19:17 +0100 Subject: [PATCH] bug in ParameterEditor removed, double-ckicking on a group button shrank width of rectangle and thus of mouse area to 10 --- src/QmlControls/ParameterEditor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QmlControls/ParameterEditor.qml b/src/QmlControls/ParameterEditor.qml index c9f7d612d..f7537f3fb 100644 --- a/src/QmlControls/ParameterEditor.qml +++ b/src/QmlControls/ParameterEditor.qml @@ -203,8 +203,8 @@ Item { readonly property string groupName: modelData onClicked: { + if (!checked) _rowWidth = 10 checked = true - _rowWidth = 10 controller.currentCategory = category controller.currentGroup = groupName } -- 2.22.0