diff options
author | Damiano Galassi <[email protected]> | 2017-02-04 10:27:20 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-02-04 10:27:20 +0100 |
commit | 9bd4723096d9c357c7cbf3242fb18537fc1cb66e (patch) | |
tree | 03b2b1c103eff3218de744abf3334dfdc870bdb0 /macosx | |
parent | 73a0435b0313e40234c744d7fcb298c2886a5d5c (diff) |
MacGui: make it possible to create a new folder in the destination open panel.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBController.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 5859f0c6a..5b26fc438 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -850,6 +850,7 @@ NSOpenPanel *panel = [NSOpenPanel openPanel]; panel.canChooseFiles = NO; panel.canChooseDirectories = YES; + panel.canCreateDirectories = YES; panel.prompt = NSLocalizedString(@"Choose", nil); if (self.job.outputURL) |