Skip to content

Commit 5830880

Browse files
committed
[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.
1 parent 212384b commit 5830880

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

meshroom/ui/qml/Controls/FilterComboBox.qml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ ComboBox {
7474

7575
popup.contentItem: ColumnLayout {
7676
width: parent.width
77-
Layout.maximumHeight: root.Window.height
7877
spacing: 0
7978

8079
RowLayout {
@@ -120,6 +119,8 @@ ComboBox {
120119
ScrollView {
121120
Layout.fillWidth: true
122121
Layout.fillHeight: true
122+
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
123+
123124
ListView {
124125
implicitHeight: contentHeight
125126
clip: true

0 commit comments

Comments
 (0)