diff --git a/screens.rpy b/screens.rpy index 296b130..549979f 100644 --- a/screens.rpy +++ b/screens.rpy @@ -423,19 +423,33 @@ screen main_menu(): add gui.main_menu_background vbox: - style_prefix "navigation" + # style_prefix "navigation" - xpos gui.navigation_xpos - yalign 0.5 + # xpos gui.navigation_xpos + xalign 0.19 + yalign 0.42 - spacing gui.navigation_spacing + spacing 1 - textbutton _("Start") action Start() - textbutton _("Load") action ShowMenu("load") - textbutton _("Preferences") action ShowMenu("preferences") - textbutton _("About") action ShowMenu("about") - textbutton _("Help") action ShowMenu("help") - textbutton _("Quit") action Quit(confirm=not main_menu) + textbutton _("Start"): + text_size 30 + xalign 0.5 + action Start() + textbutton _("Load"): + text_size 30 + xalign 0.5 + action ShowMenu("load") + textbutton _("Options"): + text_size 30 + xalign 0.5 + action ShowMenu("preferences") + textbutton _("Quit"): + text_size 30 + xalign 0.5 + action Quit(confirm=not main_menu) + + # textbutton _("About") action ShowMenu("about") + # textbutton _("Help") action ShowMenu("help") style main_menu_frame is empty style main_menu_vbox is vbox diff --git a/screens.rpyc b/screens.rpyc index f09d614..aaf7879 100644 Binary files a/screens.rpyc and b/screens.rpyc differ