Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Cannot Reproduce
-
Affects Version/s: Qt Creator 4.9.2, Qt Creator 4.10.0-beta2
-
Fix Version/s: None
-
Component/s: Quick / QML Support
-
Platform/s:
Description
Sample QML is:
import QtQuick 2.12 import QtQuick.Window 2.12 Window { visible: true width: 640 height: 480 property variant tbl: ["℃"] Text { y: 0 text: tbl[0] } // onActiveFocusItemChanged: { console.debug("activeFocusItem: ", activeFocusItem) //<- main.qml:18: error: Expected token `,' } }
Reproducible steps:
- Open project
- Open QML
- Showing Expected token `,'
- Edit something and save file
- Error is gone
Please check with attached sample project.