Skip to content

Commit

Permalink
Remove 16x6 aspect ratio
Browse files Browse the repository at this point in the history
  • Loading branch information
TimOliver committed Apr 7, 2024
1 parent 94b5b21 commit 19a5b01
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ typedef NS_ENUM(NSInteger, TOCropViewControllerAspectRatioPreset) {
TOCropViewControllerAspectRatioPreset5x4,
TOCropViewControllerAspectRatioPreset7x5,
TOCropViewControllerAspectRatioPreset16x9,
TOCropViewControllerAspectRatioPreset16x6,
TOCropViewControllerAspectRatioPresetCustom
};

Expand Down
3 changes: 0 additions & 3 deletions Objective-C/TOCropViewController/TOCropViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -671,9 +671,6 @@ - (void)setAspectRatioPreset:(TOCropViewControllerAspectRatioPreset)aspectRatioP
case TOCropViewControllerAspectRatioPreset16x9:
aspectRatio = CGSizeMake(16.0f, 9.0f);
break;
case TOCropViewControllerAspectRatioPreset16x6:
aspectRatio = CGSizeMake(16.0f, 6.0f);
break;
case TOCropViewControllerAspectRatioPresetCustom:
aspectRatio = self.customAspectRatio;
break;
Expand Down

0 comments on commit 19a5b01

Please sign in to comment.