Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.15.0, 5.15.1, 5.15.2, 5.15
-
None
Description
Starting with 5.15.0, if you have a QQC1 ComboBox on a Window that is modal, its items are all greyed out when it is dropped and as such it is completely inoperable. Canonical test case:
import QtQuick 2.15 import QtQuick.Window 2.15 import QtQuick.Controls 1.5 Window { visible: true modality: Qt.ApplicationModal // Works fine without this line ComboBox { model: ["Item1", "Item2"] } }