From 0f12a36ff61e76a62c45d341b39a977526dc249a Mon Sep 17 00:00:00 2001 From: Cooper Dalrymple Date: Tue, 5 Aug 2025 10:34:13 -0500 Subject: [PATCH] Fix page indicator size when `scale=1` --- src/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/code.py b/src/code.py index 6cf370e..2d4fa79 100644 --- a/src/code.py +++ b/src/code.py @@ -359,7 +359,7 @@ def display_page(page_index): print(f"{grid_index} | {grid_index % config["width"], grid_index // config["width"]}") -page_txt = Label(terminalio.FONT, text="", scale=2, color=color_palette["fg"]) +page_txt = Label(terminalio.FONT, text="", scale=scale, color=color_palette["fg"]) page_txt.anchor_point = (1.0, 1.0) page_txt.anchored_position = (display.width - 2, display.height - 2) main_group.append(page_txt)