Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.15.6
-
None
Description
The ComboBox popup should be able to expand to min(the largest item, screen width) without having to customize the popup:
import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.Controls 2.12 import QtQuick.Layouts 1.3 ApplicationWindow { id: window width: 640 height: 480 visible: true title: qsTr("Hello World") RowLayout { width: parent.width Label { Layout.fillWidth: true text: "Select:" } ComboBox { model: ["First", "Second longer", "Third even longer text"] Layout.fillWidth: false } } }
Attachments
Issue Links
- duplicates
-
QTBUG-78281 QML ComboBox is eliding when it shouldn't
- Closed