From ac412b86a21d279252f818395f1ba2e9ab98706c Mon Sep 17 00:00:00 2001 From: tomasMizera Date: Mon, 22 Mar 2021 09:01:29 +0100 Subject: [PATCH] remove space after form reserved for invisible group headers --- qgsquick/from_qgis/plugin/qgsquickfeatureform.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qgsquick/from_qgis/plugin/qgsquickfeatureform.qml b/qgsquick/from_qgis/plugin/qgsquickfeatureform.qml index 03ba6880b..f96d119d8 100644 --- a/qgsquick/from_qgis/plugin/qgsquickfeatureform.qml +++ b/qgsquick/from_qgis/plugin/qgsquickfeatureform.qml @@ -453,7 +453,8 @@ Item { Item { id: fieldContainer visible: Type === 'field' - height: childrenRect.height + // We also need to set height to zero if Type is not field otherwise children created blank space in form + height: Type === 'field' ? childrenRect.height : 0 anchors { left: parent.left