diff options
author | Viljami Ilola <+@hix.fi> | 2024-04-26 22:55:30 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-04-26 22:55:30 +0300 |
commit | 220211bf89e5c873c2ee694b14ab70578188a36c (patch) | |
tree | 612a794c7192cc2b1cd7419a8ce3a5d650cdf4b9 /src/sliceitoff/screens/mainmenu.py | |
parent | e6a958b6c9d5f6c77918e11f3f862156d563ba14 (diff) |
setting mainmenu item
Diffstat (limited to 'src/sliceitoff/screens/mainmenu.py')
-rw-r--r-- | src/sliceitoff/screens/mainmenu.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sliceitoff/screens/mainmenu.py b/src/sliceitoff/screens/mainmenu.py index 17def9a..ce69aa1 100644 --- a/src/sliceitoff/screens/mainmenu.py +++ b/src/sliceitoff/screens/mainmenu.py @@ -16,9 +16,11 @@ def mainmenu_screen(selection): f"{chr(active if selection == 2 else inactive)}" f"Instructions\n\n" f"{chr(active if selection == 3 else inactive)}" + f"Settings\n\n" + f"{chr(active if selection == 4 else inactive)}" f"Quit, Why?") return TextPage( text, font = '8x8', size = (16_000, 16_000), - pos = (24_000, 32_000) ) + pos = (32_000, 16_000) ) |