diff options
author | Damiano Galassi <[email protected]> | 2017-12-19 12:20:43 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-12-19 12:20:43 +0100 |
commit | b5610f07bb472ff390a88802283cede23e01b351 (patch) | |
tree | 1cd5b23ee3d7db19f842cfeb661bbf02f56bb87b /macosx/HBJob.m | |
parent | 0b38e6d03c0297c72f0c250ae2311a9d7b521fa0 (diff) |
MacGui: append "(Modified)" to the preset name.
Diffstat (limited to 'macosx/HBJob.m')
-rw-r--r-- | macosx/HBJob.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/macosx/HBJob.m b/macosx/HBJob.m index 1e1d479a7..1644a7fcf 100644 --- a/macosx/HBJob.m +++ b/macosx/HBJob.m @@ -232,6 +232,8 @@ NSString *HBChaptersChangedNotification = @"HBChaptersChangedNotification"; [[self.undo prepareWithInvocationTarget:self] setMp4HttpOptimize:_mp4HttpOptimize]; } _mp4HttpOptimize = mp4HttpOptimize; + + [[NSNotificationCenter defaultCenter] postNotificationName:HBContainerChangedNotification object:self]; } - (void)setAlignAVStart:(BOOL)alignAVStart @@ -241,6 +243,8 @@ NSString *HBChaptersChangedNotification = @"HBChaptersChangedNotification"; [[self.undo prepareWithInvocationTarget:self] setAlignAVStart:_alignAVStart]; } _alignAVStart = alignAVStart; + + [[NSNotificationCenter defaultCenter] postNotificationName:HBContainerChangedNotification object:self]; } - (void)setMp4iPodCompatible:(BOOL)mp4iPodCompatible @@ -250,6 +254,8 @@ NSString *HBChaptersChangedNotification = @"HBChaptersChangedNotification"; [[self.undo prepareWithInvocationTarget:self] setMp4iPodCompatible:_mp4iPodCompatible]; } _mp4iPodCompatible = mp4iPodCompatible; + + [[NSNotificationCenter defaultCenter] postNotificationName:HBContainerChangedNotification object:self]; } - (void)setChaptersEnabled:(BOOL)chaptersEnabled |