Hi.
SHA-1: 9efbd199a6f09512d2154eb0b92bff4cb90b9002 * Fixes for file-filter separator token parsing on linux zenity and win32. https://github.com/julianstorer/JUCE/commit/9efbd199a6f09512d2154eb0b92bff4cb90b9002
On Windows, after update the JUCE git, the below codes will not show any image file in FileChooser dialog which has a lot of image files. But it was normal before git pull.
FileChooser fc (TRANS ("Please choose an image file"),
File::getSpecialLocation (File::userPicturesDirectory),
"*.jpg;*.jpeg;*.png;*.gif");
if (fc.browseForFileToOpen ())
{
// ...
}
