Key mapping error

When I try to map Ctrl + [ or ] they do not map correctly.

Ctrl + [ shows as Ctrl + escape
and
Ctrl + ] shows as Ctrl + 1d

I guess this is on Windows…? Try changing this bit of juce_win32_Windowing.cpp, line 1901ish:

else if ((currentModifiers & ModifierKeys::ctrlModifier) != 0 && key <= 31)

That seems to do the trick on my machine.

seems fixed, thanks.