From 44a00e1b7e59ef76c103dcc5439e205c75888aba Mon Sep 17 00:00:00 2001 From: dan Date: Fri, 8 Sep 2023 16:30:00 +0100 Subject: Set crop mode to None by default (#1415) Fixes #1263 Previously, opening the crop tool had 1:1 selected by default. So if you opened it and pressed Done without changing anything, it would format the image as 1:1. After this change, None is selected by default. So if you open the crop tool and press Done without changing anything, nothing will change. --- src/state/models/media/image.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/state/models/media/image.ts b/src/state/models/media/image.ts index dd5b36170..844ecb778 100644 --- a/src/state/models/media/image.ts +++ b/src/state/models/media/image.ts @@ -32,7 +32,7 @@ export class ImageModel implements Omit { // Web manipulation prev?: RNImage attributes: ImageManipulationAttributes = { - aspectRatio: '1:1', + aspectRatio: 'None', scale: 1, flipHorizontal: false, flipVertical: false, -- cgit 1.4.1