Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
None
-
5.2.0
-
None
-
Ubuntu 13.10 64bit, Qt5.2, QtQuick 2.1, QtQuick Controls 1.1
Description
Qt Quick apps crash when a ComboxBox object is given a model.
App crashes when ComboBox is declared like either
ComboBox {
width: 200
model: [ "Banana", "Apple", "Coconut" ]
}
or
ComboBox {
width: 200
model: ListModel {
ListElement
ListElement
{ text: "Apple"; color: "Green" }ListElement
{ text: "Coconut"; color: "Brown" } }
}
NOTE: It does not crash when ComboBox is declared like this
ComboBox {
width: 200
}
more details: http://qt-project.org/forums/viewthread/35888/
Attachments
Issue Links
- is replaced by
-
QTBUG-36410 Application crashes when using Instantiator with asynchronous Loader
-
- Closed
-