IDE bug with braces //{, "{", '{' that aren't part of the code

Put this to IDE, move the text cursor to each brace and see that it guides you wrong.

if (character=="{") //{
{
dostuff;
}
}
}

I bet there's way easy IDE fix for this problem.
I couldn't find any topic about this, sorry if it's a repost.

I just confirmed it with version 1.04 of the IDE. I'm surprised nobody noticed this before.

checked - CTRL-T auto formatter does its job right. (it says too much right } )

It is the match function that fails,
never noticed as I try to do my indenting consequently with { } on separate lines.
Than you can see which pair matches

if (condition1)
{
  while (condition2)
  {
    if (character=="{")  //{
    {
      dostuff;
    }
  }
}