diff --git a/qt6/src/qml/ComboBox.qml b/qt6/src/qml/ComboBox.qml index 680951ac..a33981be 100644 --- a/qt6/src/qml/ComboBox.qml +++ b/qt6/src/qml/ComboBox.qml @@ -147,9 +147,9 @@ T.ComboBox { } popup: Popup { - clip: true implicitWidth: control.width contentItem: ArrowListView { + clip: true maxVisibleItems: control.maxVisibleItems view.model: control.delegateModel view.currentIndex: control.highlightedIndex diff --git a/src/qml/ComboBox.qml b/src/qml/ComboBox.qml index 9c645e05..8c294ad1 100644 --- a/src/qml/ComboBox.qml +++ b/src/qml/ComboBox.qml @@ -146,9 +146,9 @@ T.ComboBox { } popup: Popup { - clip: true implicitWidth: control.width contentItem: ArrowListView { + clip: true maxVisibleItems: control.maxVisibleItems view.model: control.delegateModel view.currentIndex: control.highlightedIndex