how to increase dropdown rectangle of ComboBox
Solved
QML and Qt Quick
-
sure, simply adjust the related parts of the combobox:
https://doc.qt.io/qt-6/qtquickcontrols2-customize.html#customizing-comboboxComboBox { // [...] popup: Popup { // [...] implicitWidth: 222 // [...] } }