From 630e0a9d3c5c392bf29df841d89736ed6f0adebd Mon Sep 17 00:00:00 2001 From: Gabriel Bolbotina Date: Mon, 11 May 2026 17:14:34 +0300 Subject: [PATCH 1/2] Changed behaviour of Multi select drawer height if no items are available --- app/qml/components/MMListMultiselectDrawer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/qml/components/MMListMultiselectDrawer.qml b/app/qml/components/MMListMultiselectDrawer.qml index 5caa085e2..bd83a44de 100644 --- a/app/qml/components/MMListMultiselectDrawer.qml +++ b/app/qml/components/MMListMultiselectDrawer.qml @@ -39,13 +39,13 @@ MMDrawer { drawerContent: Item { width: parent.width - height: showFullScreen ? root.drawerContentAvailableHeight : contentLayout.height + height: showFullScreen && listViewComponent.count > 0 ? root.drawerContentAvailableHeight : contentLayout.height Column { id: contentLayout width: parent.width - height: showFullScreen ? parent.height : implicitHeight + height: showFullScreen && listViewComponent.count > 0 ? parent.height : implicitHeight spacing: 0 From a174594b02303d71af7f31fe4963cecfe42461ab Mon Sep 17 00:00:00 2001 From: Gabriel Bolbotina Date: Mon, 11 May 2026 17:28:57 +0300 Subject: [PATCH 2/2] Changed full screen policy of mm form value relation editor --- app/qml/form/editors/MMFormValueRelationEditor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/qml/form/editors/MMFormValueRelationEditor.qml b/app/qml/form/editors/MMFormValueRelationEditor.qml index ae4016be2..1e5db1d7e 100644 --- a/app/qml/form/editors/MMFormValueRelationEditor.qml +++ b/app/qml/form/editors/MMFormValueRelationEditor.qml @@ -84,7 +84,7 @@ MMFormComboboxBaseEditor { multiSelect: internal.allowMultivalue withSearch: vrModel.count > 5 - showFullScreen: multiSelect || withSearch + showFullScreen: withSearch valueRole: "FeatureId" textRole: "FeatureTitle"