From eddb05dfd488dd471e063decab22563e42c1be3a Mon Sep 17 00:00:00 2001 From: 4njru Date: Mon, 29 Jul 2024 22:25:48 -0400 Subject: [PATCH] Oops gotta change something back --- crimsobot/utils/image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crimsobot/utils/image.py b/crimsobot/utils/image.py index d106c04f..9cdca380 100644 --- a/crimsobot/utils/image.py +++ b/crimsobot/utils/image.py @@ -513,9 +513,9 @@ def make_currents_img(img: Image.Image, flip: bool) -> Image.Image: _, height_new = img.size if height_new >= 145: - row_y = 384 + 72 - height_new + row_y = 396 + 72 - height_new else: - row_y = 384 - height_new // 2 # help make shorter images more visible + row_y = 396 - height_new // 2 # help make shorter images more visible back.paste(img, (254, row_y), img)