diff options
author | Damiano Galassi <[email protected]> | 2017-06-02 08:50:37 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-06-02 08:50:37 +0200 |
commit | 844a0bf724abc56edcad0390d82bf92eae219144 (patch) | |
tree | 18a72ff506773883e4236c21fba1639a55ccea5a | |
parent | 1997236641498ce33117154104f4b9ee3a94bbba (diff) |
MacGui: fix deinterlace presets and sharpen tune undo support.
-rw-r--r-- | macosx/HBFilters.m | 6 |
1 files 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"; } } |