Details
-
Bug
-
Resolution: Fixed
-
Not Evaluated
-
Qt Creator 4.5.2, Qt Creator 4.6.0-rc1
-
None
-
Windows 10 64-bit
Qt 5.10.1
Qt Creator 4.5.2, 4.6.0-rc1
Description
If a window contains ComboBox with a simple model, QML emulation immediately crashes. For example, this causes the crash:
import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Window 2.3 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") ComboBox { id: comboBox x: 46 y: 45 model: ["1", "2"] } }
Removing the ComboBox model solves the crash. Please find the sample project attached.