Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.2.0-beta1
-
Windows 8.1 Enterprise
-
128341d4e223396a896363894b8a7f7fa92dff2b (qt-creator/qt-creator/master)
Description
I have a line like:
Text { text: qsTr("Hello World"); anchors.centerIn: parent; color: "blue" }
When I move "anchors.centerIn" to the first position of the Text component, I get two semicolons after "anchors.centerIn: parent", so it becomes
Text { anchors.centerIn: parent;; text: qsTr("Hello World"); color: "blue" }