Small fix to alignement

This commit is contained in:
2026-02-28 18:51:30 +01:00
parent e5140a460a
commit 5efae09664
3 changed files with 19 additions and 18 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ class CheckboxRenderer:
# Draw score boxes
start_x = pos['w'] + 20
for val in SCORES:
box = draw_checkbox(draw, start_x, pos['y'] + 5, BOX_SIZE, str(val))
box = draw_checkbox(draw, start_x, pos['y'] + 25, BOX_SIZE, str(val))
self.checkboxes.append({
"type": "score", "label": self.label, "value": val,
"rel_box": box # Will be adjusted for global Y later