macos: Propagate the create-folders option also for Open panels

When opening a folder, it may come in handy to create a folder.

Fixes #6872.
This commit is contained in:
Arjan Molenaar 2024-07-24 20:41:22 +02:00
parent b435f3c543
commit 6bbda619f9

View File

@ -257,6 +257,10 @@ filechooser_quartz_launch (FileChooserQuartzData *data)
{
[panel setCanChooseDirectories:YES];
[panel setCanChooseFiles:NO];
if (data->create_folders)
{
[panel setCanCreateDirectories:YES];
}
}
else
{