From 09ed3c647a919157fcb155b3937935fc7b44710d Mon Sep 17 00:00:00 2001 From: sk Date: Mon, 12 Jun 2023 20:25:12 +0200 Subject: [PATCH] reduce max height for photos --- .../java/org/joinmastodon/android/ui/PhotoLayoutHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/ui/PhotoLayoutHelper.java b/mastodon/src/main/java/org/joinmastodon/android/ui/PhotoLayoutHelper.java index 7ea073bed..f6544b879 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/ui/PhotoLayoutHelper.java +++ b/mastodon/src/main/java/org/joinmastodon/android/ui/PhotoLayoutHelper.java @@ -12,7 +12,7 @@ import androidx.annotation.NonNull; public class PhotoLayoutHelper{ public static final int MAX_WIDTH=1000; - public static final int MAX_HEIGHT=1777; // 9:16 + public static final int MAX_HEIGHT=1400; public static final int MIN_HEIGHT=250; public static final float GAP=1.5f;