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.

(cherry picked from commit 6bbda619f9)
This commit is contained in:
Arjan Molenaar
2024-07-24 20:41:22 +02:00
committed by Nazar Mokrynskyi
parent edb31b0a67
commit 15b8380210

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
{