Fix page indicator size when scale=1
This commit is contained in:
parent
7b98eec44c
commit
0f12a36ff6
1 changed files with 1 additions and 1 deletions
|
|
@ -359,7 +359,7 @@ def display_page(page_index):
|
||||||
print(f"{grid_index} | {grid_index % config["width"], grid_index // config["width"]}")
|
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.anchor_point = (1.0, 1.0)
|
||||||
page_txt.anchored_position = (display.width - 2, display.height - 2)
|
page_txt.anchored_position = (display.width - 2, display.height - 2)
|
||||||
main_group.append(page_txt)
|
main_group.append(page_txt)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue