diff --git a/Sources/BrightroomUI/Built-in UI/PhotosCrop/PhotosCropViewController.swift b/Sources/BrightroomUI/Built-in UI/PhotosCrop/PhotosCropViewController.swift index 90e5ea9c..9dc4f8fb 100644 --- a/Sources/BrightroomUI/Built-in UI/PhotosCrop/PhotosCropViewController.swift +++ b/Sources/BrightroomUI/Built-in UI/PhotosCrop/PhotosCropViewController.swift @@ -400,7 +400,12 @@ public final class PhotosCropViewController: UIViewController { } @objc private func handleResetButton() { - cropView.setCroppingAspectRatio(nil) + switch store.state.options.aspectRatioOptions { + case .fixed(let ratio): + cropView.setCroppingAspectRatio(ratio) + case .selectable: + cropView.setCroppingAspectRatio(nil) + } cropView.resetCrop() }