Hello all,
Try the following code example:const bool a = true && true && true,
b = true && true,
c = true && true && true;
Variable b will be coloured gray, while variable c is printed italic. It is an effect I've seen for several builds.
Change the first line, so the code becomes:const bool a = (true && true && true),
b = true && true,
c = true && true && true;
Variable b is coloured gray now (as it should), while variable c is still printed italic.
Now change the code to the following:const bool a = (true && true && true),
b = (true && true),
c = (true && true && true);
Place your cursor on another piece of text (I don't know if it's required, but that's the way I did it). Switch to another full-screen application. And turn back after a while. Big chance that variable c isn't italic anymore.
Could the team of Whole Tomato please take a look at this? Thank you in advance.
With kind regards,
Patrick Luja