diff options
author | ritsuka <[email protected]> | 2014-09-12 06:57:18 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-09-12 06:57:18 +0000 |
commit | 46e2c852516ba42ada9009e9976cf4129acda7de (patch) | |
tree | 0181b121bfeb4ffab8693915df4d7679e74a285f /macosx | |
parent | 356b12cbbb3b907b560b6217aadb2b75092318d0 (diff) |
MacGui: fix preview deinterlace display. The new deinterlace setting was set to the old preview generator instead of the new one.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6399 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.m | 6 | ||||
-rw-r--r-- | macosx/HBFilters.m | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 8db111412..0fed3077e 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -4864,11 +4864,11 @@ the user is using "Custom" settings by determining the sender*/ job->anamorphic.par_width = par_width; job->anamorphic.par_height = par_height; + /* we call SetTitle: in fPictureController so we get an instant update in the Picture Settings window */ + [fPictureController setTitle:fTitle]; [fPictureController.filters applySettingsFromPreset:chosenPreset]; + [self pictureSettingsDidChange]; } - /* we call SetTitle: in fPictureController so we get an instant update in the Picture Settings window */ - [fPictureController setTitle:fTitle]; - [self pictureSettingsDidChange]; } #pragma mark - Presets View Controller Delegate diff --git a/macosx/HBFilters.m b/macosx/HBFilters.m index ac5fdac83..c19c14c81 100644 --- a/macosx/HBFilters.m +++ b/macosx/HBFilters.m @@ -138,8 +138,8 @@ static NSDictionary *_nlmeansTunesDict; { /* We only allow *either* Decomb or Deinterlace. So check for the PictureDecombDeinterlace key. */ self.useDecomb = 1; - self.decomb = 0; - self.deinterlace = 0; + _decomb = 0; + _deinterlace = 0; if ([preset[@"PictureDecombDeinterlace"] intValue] == 1) { /* we are using decomb */ |