Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/qml/components/MMListMultiselectDrawer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion app/qml/form/editors/MMFormValueRelationEditor.qml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ MMFormComboboxBaseEditor {

multiSelect: internal.allowMultivalue
withSearch: vrModel.count > 5
showFullScreen: multiSelect || withSearch
showFullScreen: withSearch

valueRole: "FeatureId"
textRole: "FeatureTitle"
Expand Down
Loading