[ui] FilterComboBox: fix issue clicking on last menu item

Disable the horizontal scrollbar in the popup menu that was
interfering with mouse click selection on the last item.
Also, remove the unneeded Layout policy on the root ColumLayout
of this popup's contentItem.
This commit is contained in:
Yann Lanthony 2025-02-13 11:40:09 +01:00
parent 212384bd1c
commit 583088035b

View file

@ -74,7 +74,6 @@ ComboBox {
popup.contentItem: ColumnLayout {
width: parent.width
Layout.maximumHeight: root.Window.height
spacing: 0
RowLayout {
@ -120,6 +119,8 @@ ComboBox {
ScrollView {
Layout.fillWidth: true
Layout.fillHeight: true
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
ListView {
implicitHeight: contentHeight
clip: true