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:
parent
0a4a67d439
commit
3b93d5d7eb
1 changed files with 5 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue