summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-08-19 17:11:53 +0000
committerritsuka <[email protected]>2014-08-19 17:11:53 +0000
commitf971f1e5fe433005027eb485c953bc8cf410885b (patch)
tree142ad80d566d14733d77ae69f8c4c064074596bb /macosx
parentf743cbf1ede8d996ed4fad4812aebce5d34ef3be (diff)
MacGui: Fixed a crash in HBFilters caused by a missing boxing of a bool.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6322 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/HBFilters.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBFilters.m b/macosx/HBFilters.m
index 7a00004a5..ac5fdac83 100644
--- a/macosx/HBFilters.m
+++ b/macosx/HBFilters.m
@@ -111,7 +111,7 @@ static NSDictionary *_nlmeansTunesDict;
- (void)prepareFiltersForPreset:(NSMutableDictionary *)preset
{
- preset[@"PictureDecombDeinterlace"] = self.useDecomb;
+ preset[@"PictureDecombDeinterlace"] = @(self.useDecomb);
preset[@"PictureDeinterlace"] = @(self.deinterlace);
preset[@"PictureDeinterlaceCustom"] = self.deinterlaceCustomString;