From 36368d94d2ee43dfddaa4eb45379e2b823ca34a0 Mon Sep 17 00:00:00 2001 From: trigg Date: Mon, 21 Jul 2025 15:34:24 +0100 Subject: [PATCH] - Fixed broken bottom-align option --- discover_overlay/voice_overlay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discover_overlay/voice_overlay.py b/discover_overlay/voice_overlay.py index 4b00e79..b84e517 100644 --- a/discover_overlay/voice_overlay.py +++ b/discover_overlay/voice_overlay.py @@ -599,7 +599,7 @@ class VoiceOverlayWindow(OverlayWindow): current_y = 0 + self.vert_edge_padding offset_y = avatar_size + self.icon_spacing if self.align_right: # A lie. Align bottom - current_y = self.height - avatar_size - self.vert_edge_padding + current_y = (height - avatar_size) - self.vert_edge_padding offset_y = -(avatar_size + self.icon_spacing) rows_to_draw = [] while len(users_to_draw) > 0: