diff --git a/gui/quick_button.png b/gui/quick_button.png index 4a4c957..c55c5a4 100644 Binary files a/gui/quick_button.png and b/gui/quick_button.png differ diff --git a/gui/quick_button_nvl.png b/gui/quick_button_nvl.png new file mode 100644 index 0000000..4a4c957 Binary files /dev/null and b/gui/quick_button_nvl.png differ diff --git a/screens.rpy b/screens.rpy index 7e69adb..4976f7b 100644 --- a/screens.rpy +++ b/screens.rpy @@ -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 diff --git a/screens.rpyc b/screens.rpyc index 52e90b3..22c2118 100644 Binary files a/screens.rpyc and b/screens.rpyc differ