diff options
author | ritsuka <[email protected]> | 2014-10-04 12:12:25 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-10-04 12:12:25 +0000 |
commit | 4ddad5be957bc4bd374c43bf17bd7d8276a5f4af (patch) | |
tree | 78e8295f2634c30379f8d6dcdd75472e527dda9b /macosx | |
parent | 198242916b6154a6948b8ce959ceca6846135dd3 (diff) |
MacGui: reset the decomb/deinterlace settings using their setters methods so the observers will be notified of the change too.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6432 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBFilters.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBFilters.m b/macosx/HBFilters.m index c19c14c81..ac5fdac83 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; - _decomb = 0; - _deinterlace = 0; + self.decomb = 0; + self.deinterlace = 0; if ([preset[@"PictureDecombDeinterlace"] intValue] == 1) { /* we are using decomb */ |