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

@ -257,33 +257,34 @@ screen quick_menu():
if mode == "nvl":
style "quick_menu_nvl"
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("BACK") action Rollback()
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("HISTORY") action ShowMenu('history')
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("SKIP") action Skip() alternate Skip(fast=True, confirm=True)
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("AUTO") action Preference("auto-forward", "toggle")
if mode == "say":
style "quick_menu"
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("BACK") action Rollback()
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("HISTORY") action ShowMenu('history')
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("SKIP") action Skip() alternate Skip(fast=True, confirm=True)
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("AUTO") action Preference("auto-forward", "toggle")
# textbutton _("Save") action ShowMenu('save')
# textbutton _("Q.Save") action QuickSave()
# textbutton _("Q.Load") action QuickLoad()