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/Controller.m | |
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/Controller.m')
-rw-r--r-- | macosx/Controller.m | 6 |
1 files changed, 3 insertions, 3 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 |