mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
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:
parent
b435f3c543
commit
6bbda619f9
@ -257,6 +257,10 @@ filechooser_quartz_launch (FileChooserQuartzData *data)
|
||||
{
|
||||
[panel setCanChooseDirectories:YES];
|
||||
[panel setCanChooseFiles:NO];
|
||||
if (data->create_folders)
|
||||
{
|
||||
[panel setCanCreateDirectories:YES];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user