diff options
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBController.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 2cc63cfaf..df36adc14 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -1201,11 +1201,14 @@ NSMutableArray *jobs = [[NSMutableArray alloc] init]; BOOL fileExists = NO; + // Get the preset from the loaded job. + HBPreset *preset = [self createPresetFromCurrentSettings]; + for (HBTitle *title in self.core.titles) { if ([indexes containsIndex:title.index]) { - HBJob *job = [[HBJob alloc] initWithTitle:title andPreset:self.selectedPreset]; + HBJob *job = [[HBJob alloc] initWithTitle:title andPreset:preset]; job.destURL = [self destURLForJob:job]; job.title = nil; [jobs addObject:job]; |