diff options
author | ritsuka <[email protected]> | 2015-07-22 14:22:08 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-07-22 14:22:08 +0000 |
commit | 85cf1e9d3de185d75bbaaf3b000a843f2fcf8065 (patch) | |
tree | 53ddcb2f21505918b1a821894fb495a0a6402617 /macosx | |
parent | a52eac98fc00823cae072b7a6fc53fa0399450a9 (diff) |
MacGui: use the correct string value for the anamorphic mode "off".
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7361 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBPicture.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBPicture.m b/macosx/HBPicture.m index 6a3f7e3ec..43c1d7979 100644 --- a/macosx/HBPicture.m +++ b/macosx/HBPicture.m @@ -567,7 +567,7 @@ NSString * const HBPictureChangedNotification = @"HBPictureChangedNotification"; switch (self.anamorphicMode) { case HB_ANAMORPHIC_NONE: - preset[@"PicturePAR"] = @"none"; + preset[@"PicturePAR"] = @"off"; break; case HB_ANAMORPHIC_LOOSE: preset[@"PicturePAR"] = @"loose"; @@ -652,7 +652,7 @@ NSString * const HBPictureChangedNotification = @"HBPictureChangedNotification"; // Assume max picture settings initially. self.keepDisplayAspect = [preset[@"PictureKeepRatio"] boolValue]; - if ([preset[@"PicturePAR"] isEqualToString:@"none"]) + if ([preset[@"PicturePAR"] isEqualToString:@"off"]) { self.anamorphicMode = HB_ANAMORPHIC_NONE; } |