readded ADV quick menu with its own style, turned button text back from all caps

This commit is contained in:
ameworm 2026-02-11 13:52:23 -03:00
parent 09b9e4742b
commit c89e972253
4 changed files with 36 additions and 14 deletions

View file

@ -259,31 +259,57 @@ screen quick_menu():
style "quick_menu_nvl"
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("BACK") action Rollback()
textbutton _("Back") action Rollback()
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("HISTORY") action ShowMenu('history')
textbutton _("History") action ShowMenu('history')
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
padding (10, 3, 10, 8)
textbutton _("SKIP") action Skip() alternate Skip(fast=True, confirm=True)
textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
frame:
background Frame("gui/quick_button.png", 6, 6, 6, 6)
background Frame("gui/quick_button_nvl.png", 6, 6, 6, 6)
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"
frame:
background Frame("gui/quick_button.png", 9, 9, 8, 8)
padding (10, 6, 10, 8)
textbutton _("Back") action Rollback()
frame:
background Frame("gui/quick_button.png", 9, 9, 8, 8)
padding (10, 6, 10, 8)
textbutton _("History") action ShowMenu('history')
frame:
background Frame("gui/quick_button.png", 9, 9, 8, 8)
padding (10, 6, 10, 8)
textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
frame:
background Frame("gui/quick_button.png", 9, 9, 8, 8)
padding (10, 6, 10, 8)
textbutton _("Auto") action Preference("auto-forward", "toggle")
# textbutton _("Save") action ShowMenu('save')
# textbutton _("Q.Save") action QuickSave()
@ -303,12 +329,8 @@ style quick_button is default
style quick_button_text is button_text
style quick_menu:
# hacky way to make them not show up for now but i dont really gaf. its easier than any of the other implementations ive played with so far
xpos 50000
ypos 50000
# xalign 0.5
# yalign 1.0
xalign 1.0
yalign 1.0
style quick_menu_nvl:
xalign 0.92