From 112a8aacaf8363cec9d68f37a9f1d631fb087235 Mon Sep 17 00:00:00 2001 From: "l.gabrysiak" Date: Sun, 2 Mar 2025 18:04:54 +0100 Subject: [PATCH] mod letter --- backend/open_webui/models/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/models/users.py b/backend/open_webui/models/users.py index 69fc716..ee236f7 100644 --- a/backend/open_webui/models/users.py +++ b/backend/open_webui/models/users.py @@ -397,7 +397,7 @@ class UsersTable: text_width = bbox[2] - bbox[0] text_hight = bbox[3] - bbox[1] x = (size[0] - text_width) // 2 - y = (size[1] - text_hight - 135) // 2 # Poprawione obliczenie pozycji y + y = (size[1] - text_hight - 100) // 2 # Poprawione obliczenie pozycji y draw.text((x, y), letter, font=font, fill=text_color) buffered = io.BytesIO()