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:
parent
d4b47809a1
commit
f3be41caba
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue