From b6b7511fd938117479411f703098e7cd4ff7b61f Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Sun, 21 Nov 2021 14:16:12 +0000 Subject: [PATCH] Restore 'large' thumbnails to be 800x600 (#7172) In order to restore the original behaviour for those who want it, redefine "large" thumbnails to be fit within 800x600px. This means that timeline screenshots end up typically not being downscaled (which is important given screenshots are our easiest way of copying chunks of history between rooms currently :/). It also means that photos end up nice and big, which was a deliberate aesthetic choice for the app in the past, which some users will want to retain. --- src/settings/enums/ImageSize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/enums/ImageSize.ts b/src/settings/enums/ImageSize.ts index 47f16ddc83..3d8dba62e9 100644 --- a/src/settings/enums/ImageSize.ts +++ b/src/settings/enums/ImageSize.ts @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -const SIZE_LARGE = { w: 480, h: 360 }; +const SIZE_LARGE = { w: 800, h: 600 }; const SIZE_NORMAL = { w: 324, h: 220 }; export enum ImageSize {