summaryrefslogtreecommitdiffstats
path: root/macosx/HBUtilities.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-02-22 15:05:21 +0100
committerDamiano Galassi <[email protected]>2017-02-22 15:05:21 +0100
commit7cf4263c54b0b671cce382854a600828656c0f04 (patch)
tree7f174fbc840ac12176d8aa69bb9173cf8e14adcc /macosx/HBUtilities.m
parent380059d4d8cf245e3667a5c92159f7b294d682ac (diff)
MacGui: preserve the output file name if auto naming is not enabled and the source is not a stream. Revert to the 0.10.x behaviour.
Diffstat (limited to 'macosx/HBUtilities.m')
-rw-r--r--macosx/HBUtilities.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBUtilities.m b/macosx/HBUtilities.m
index 8d83f46f3..973953f69 100644
--- a/macosx/HBUtilities.m
+++ b/macosx/HBUtilities.m
@@ -208,7 +208,8 @@
// Generate a new file name
NSString *fileName = job.title.name;
- // If Auto Naming is on. We create an output filename of dvd name - title number
+ // If Auto Naming is on. We create an output filename by using the
+ // format set int he preferences.
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultAutoNaming"])
{
fileName = [self automaticNameForJob:job];