mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-02-02 06:46:34 +01:00
Fix android extra's menu not displaying the chapter select button, as well as removing the check that forces chapter select to be on when config.developer is true
This commit is contained in:
parent
4db1a76088
commit
963851af8e
1 changed files with 6 additions and 4 deletions
|
@ -359,7 +359,7 @@ screen navigation():
|
|||
textbutton _("Load") activate_sound "audio/ui/uiClick.wav" action ShowMenu("load")
|
||||
textbutton _("Delete") activate_sound "audio/ui/uiClick.wav" action ShowMenu("delete")
|
||||
|
||||
if config.developer or persistent.enable_chapter_select:
|
||||
if persistent.enable_chapter_select:
|
||||
textbutton _("Chapter Select") activate_sound "audio/ui/uiClick.wav" action Start("chapter_select")
|
||||
|
||||
textbutton _("Options") activate_sound "audio/ui/uiClick.wav" action ShowMenu("preferences")
|
||||
|
@ -1285,7 +1285,7 @@ screen extrasnavigation():
|
|||
vbox:
|
||||
spacing 10
|
||||
xpos 1885
|
||||
ypos (1269 if config.developer and persistent.enable_chapter_select else 1130)
|
||||
ypos (1269 if persistent.enable_chapter_select else 1130)
|
||||
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
|
||||
[
|
||||
[ _("Help"), ShowMenu("help") ],
|
||||
|
@ -1803,17 +1803,19 @@ screen extrasnavigation(): #Updates are removed (not even supported by Ren'Py)
|
|||
else:
|
||||
add "gui/snootgame.png"
|
||||
vbox:
|
||||
spacing 25
|
||||
spacing 10
|
||||
xpos 1885
|
||||
yalign 0.9
|
||||
ypos (1269 if persistent.enable_chapter_select else 1130)
|
||||
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
|
||||
[
|
||||
[ _("Help"), ShowMenu("help") ],
|
||||
[ _("About"), ShowMenu("about") ],
|
||||
[ _("Gallery"), ShowMenu("cg_gallery") ],
|
||||
*([(_("Chapter Select"), Start("chapter_select"))] if persistent.enable_chapter_select else []),
|
||||
[ _("Mods"), ShowMenu("mod_menu") ],
|
||||
[ _("Return"), ShowMenu("main_menu") ]
|
||||
] )
|
||||
add Null(0, 129)
|
||||
|
||||
style radio_button:
|
||||
variant "mobile"
|
||||
|
|
Loading…
Reference in a new issue