1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-18 00:54:19 +00:00

FileChooser: Allow multiple directory selection on Linux/Zenity

This commit is contained in:
reuk 2021-05-24 19:41:11 +01:00
parent 0a4a67d439
commit 3b93d5d7eb

View file

@ -214,10 +214,13 @@ private:
}
else
{
if (isDirectory) args.add ("--directory");
if (isSave) args.add ("--save");
if (isSave)
args.add ("--save");
}
if (isDirectory)
args.add ("--directory");
if (owner.filters.isNotEmpty() && owner.filters != "*" && owner.filters != "*.*")
{
StringArray tokens;