diff options
author | Damiano Galassi <[email protected]> | 2018-12-22 07:52:46 +0100 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-12-25 21:11:52 -0500 |
commit | 99aa7bd4b92e1ff2f9c1fdae34d1e6777bdb7666 (patch) | |
tree | 553cbdf736c56040839ee3f543bd3590e3f7c407 | |
parent | ee6469f943d89faf14e4a0a5ad4948454553c9d3 (diff) |
MacGui: fix file extension when setting a preset.
(cherry picked from commit 84d552b7bb44bf65c680deeb6f40e91453398248)
-rw-r--r-- | macosx/HBController.m | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index c489ae2fb..90cba3c72 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -1357,10 +1357,12 @@ static void *HBControllerQueueCoreContext = &HBControllerQueueCoreContext; // Apply the preset to the current job [self.job applyPreset:self.currentPreset]; + [self addJobObservers]; + + [self.autoNamer updateFileExtension]; + // If Auto Naming is on, update the destination [self.autoNamer updateFileName]; - - [self addJobObservers]; } } |