1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Fixed a bug in the Windows FileChooser where two backslashes would be added to the file paths of selected files

This commit is contained in:
ed 2017-01-03 16:44:34 +00:00
parent d4b47809a1
commit f3be41caba

View file

@ -282,7 +282,7 @@ void FileChooser::showPlatformDialog (Array<File>& results, const String& title_
while (*filename != 0)
{
results.add (File (String (files) + "\\" + String (filename)));
results.add (File (String (files)).getChildFile (String (filename)));
filename += wcslen (filename) + 1;
}
}