fixed issue where the buttons would linger at the top left of the screen between mode transitions

This commit is contained in:
ameworm 2026-02-11 13:43:56 -03:00
parent 74bf842d73
commit 09b9e4742b
2 changed files with 24 additions and 23 deletions

View file

@ -258,9 +258,6 @@ screen quick_menu():
if mode == "nvl": if mode == "nvl":
style "quick_menu_nvl" style "quick_menu_nvl"
if mode == "say":
style "quick_menu"
frame: frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6) background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8) padding (10, 3, 10, 8)
@ -284,6 +281,10 @@ screen quick_menu():
padding (10, 3, 10, 8) padding (10, 3, 10, 8)
textbutton _("AUTO") action Preference("auto-forward", "toggle") textbutton _("AUTO") action Preference("auto-forward", "toggle")
if mode == "say":
style "quick_menu"
# textbutton _("Save") action ShowMenu('save') # textbutton _("Save") action ShowMenu('save')
# textbutton _("Q.Save") action QuickSave() # textbutton _("Q.Save") action QuickSave()
# textbutton _("Q.Load") action QuickLoad() # textbutton _("Q.Load") action QuickLoad()

Binary file not shown.