Details
-
Bug
-
Resolution: Cannot Reproduce
-
P3: Somewhat important
-
None
-
Qt Creator 3.2.2, Qt Creator 3.3.0
-
Windows 7
Description
I have the following "switch" style:
int foo(int a) { switch(a) { case 1: bar(1); break; default: bar(2); break; } return 0; }
But while typing Qt creator aligns it as follows:
int foo(int a) { switch(a) { case 1: bar(1); break; default: bar(2); break; } return 0; }
To fix that I need to select the entire "switch" statement and press Ctrl+I to force my alignment. Please see attach.