summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macosx/HBFilters.m6
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";
}
}