Code Folding is catching too many lines
I have set "if" blocks to be foldable,
and I have been using them like this
If (1==1, // comment abc
<foldable code block 1 > );
If (1==1, // comment xyz
<foldable code block 2 > );
But often, the first block will catch later blocks and fold them all together.
The code work without a problem, but is is sometimes hard to find the code, it is lost in the folds.
Is there a solution to t...