-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 4.0.0-beta1
-
None
This following simple code was working in older versions and is now crashing the puppet.
import QtQuick 2.5 import QtQuick.Controls 1.4 ApplicationWindow { id: applicationWindow1 visible: true width: 640 height: 480 title: qsTr("Testing") Timer{ id:testiTimer interval: 1500; running: true; repeat: true onTriggered: { console.log("message") } } Rectangle { id: testRectangle1 width: 383 height: 86 color: "#c2c2c2" } }