-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 2.1.0-beta2
-
None
-
Windows XP
-
7c5d89ae8a79760312ccf4082e44ea6ced9d2d18
I am using the 2.1 RC1. The auto-indenter misses up the first curly bracket.
Qt Creator
if (x == y) return; if (y == z) { //<-- indented when it shouldn't be! //do something return; }
Should be
Should be: if (x == y) return; if (y == z) { //do something return; }
MORE INFO: I attached the QML file that had a problem. C++ files do NOT have this problem, so I guess that's why you can't repo it.