Skip to content

Commit 2d8765c

Browse files
authored
Merge pull request #573 from TimOliver/remove-16-6
Remove 16x6 aspect ratio
2 parents 94b5b21 + 19a5b01 commit 2d8765c

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Objective-C/TOCropViewController/Constants/TOCropViewConstants.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ typedef NS_ENUM(NSInteger, TOCropViewControllerAspectRatioPreset) {
4343
TOCropViewControllerAspectRatioPreset5x4,
4444
TOCropViewControllerAspectRatioPreset7x5,
4545
TOCropViewControllerAspectRatioPreset16x9,
46-
TOCropViewControllerAspectRatioPreset16x6,
4746
TOCropViewControllerAspectRatioPresetCustom
4847
};
4948

Objective-C/TOCropViewController/TOCropViewController.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -671,9 +671,6 @@ - (void)setAspectRatioPreset:(TOCropViewControllerAspectRatioPreset)aspectRatioP
671671
case TOCropViewControllerAspectRatioPreset16x9:
672672
aspectRatio = CGSizeMake(16.0f, 9.0f);
673673
break;
674-
case TOCropViewControllerAspectRatioPreset16x6:
675-
aspectRatio = CGSizeMake(16.0f, 6.0f);
676-
break;
677674
case TOCropViewControllerAspectRatioPresetCustom:
678675
aspectRatio = self.customAspectRatio;
679676
break;

0 commit comments

Comments
 (0)