Navigator count doesn't update properly when reloading mappings
After doing File > Reload Mappings, The count in the navigator in the upper right doesn't update properly. For classes that were open at the time of reload, when the count updates, it counts all tokens, not just those that match the selected filter.
that's so weird. will get this fixed asap!
i can't reproduce this in enigma's test project. what are the details of your setup?
I'm using the Minecraft jar with Parchment mappings.
After a bit of debugging, this appears to be a race condition where entries are added to the navigator before the project's remapper has had it's mappings tree populated. When it then tries to look up the token type, the mapping then isn't found in the tree (because it hasn't been populated yet) and so it defaults to TokenType.OBFUSCATED. This results in every mapping being considered obfuscated.
fixed by #305