From 844a0bf724abc56edcad0390d82bf92eae219144 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Fri, 2 Jun 2017 08:50:37 +0200 Subject: [PATCH] MacGui: fix deinterlace presets and sharpen tune undo support. --- macosx/HBFilters.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"; } } -- 2.40.0