From: Damiano Galassi Date: Fri, 2 Jun 2017 06:50:37 +0000 (+0200) Subject: MacGui: fix deinterlace presets and sharpen tune undo support. X-Git-Tag: 1.1.0~550 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=844a0bf724abc56edcad0390d82bf92eae219144;p=handbrake MacGui: fix deinterlace presets and sharpen tune undo support. --- diff --git a/macosx/HBFilters.m b/macosx/HBFilters.m index e9d562eeb..c29373cb7 100644 --- a/macosx/HBFilters.m +++ b/macosx/HBFilters.m @@ -181,7 +181,7 @@ NSString * const HBFiltersChangedNotification = @"HBFiltersChangedNotification"; if (hb_validate_filter_preset(filter_id, self.deinterlacePreset.UTF8String, NULL, NULL)) { - _deinterlacePreset = @"default"; + self.deinterlacePreset = @"default"; } } @@ -326,7 +326,7 @@ NSString * const HBFiltersChangedNotification = @"HBFiltersChangedNotification"; if (hb_validate_filter_preset(filter_id, self.sharpenPreset.UTF8String, NULL, NULL)) { - _sharpenPreset = @"medium"; + self.sharpenPreset = @"medium"; } } @@ -358,7 +358,7 @@ NSString * const HBFiltersChangedNotification = @"HBFiltersChangedNotification"; if (hb_validate_filter_preset(filter_id, self.sharpenPreset.UTF8String, self.sharpenTune.UTF8String, NULL)) { - _sharpenTune = @"none"; + self.sharpenTune = @"none"; } }