raylib: fix registration box height

This commit is contained in:
Shane Smiskol
2025-10-04 01:04:05 -07:00
parent 7933c10c97
commit ebe47a580c
+1 -1
View File
@@ -28,7 +28,7 @@ class SetupWidget(Widget):
def _render_registration(self, rect: rl.Rectangle):
"""Render registration prompt."""
rl.draw_rectangle_rounded(rl.Rectangle(rect.x, rect.y, rect.width, 590), 0.02, 20, rl.Color(51, 51, 51, 255))
rl.draw_rectangle_rounded(rl.Rectangle(rect.x, rect.y, rect.width, 630), 0.02, 20, rl.Color(51, 51, 51, 255))
x = rect.x + 64
y = rect.y + 48