From f3bb2caa7fe94f1083aae998bc9128629d506bb7 Mon Sep 17 00:00:00 2001 From: Map Date: Tue, 8 Oct 2024 13:17:03 -0500 Subject: [PATCH] put backspace functionality into the help menu --- game/screens.rpy | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/game/screens.rpy b/game/screens.rpy index f1ba2e8..079c718 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -904,12 +904,6 @@ screen preferences(): textbutton _("Enable Debug Scores") action ToggleVariable("persistent.enable_debug_scores", True, False) textbutton _("Enable Chapter Select") action ToggleVariable("persistent.enable_chapter_select", True, False) - vbox: - style_prefix "check" - label _("Mods") - textbutton _("Show Mod Screenshots") action [Function(onclick_audio, persistent.show_mod_screenshots), ToggleVariable("persistent.show_mod_screenshots", True, False)] - textbutton _("Enable New Mods") action [Function(onclick_audio, persistent.newmods_default_state), ToggleVariable("persistent.newmods_default_state", True, False)] - if not main_menu: if config.developer and persistent.enable_debug_scores: $ debug_story_variables(False) @@ -917,6 +911,12 @@ screen preferences(): else: $ debug_story_variables(False) + vbox: + style_prefix "check" + label _("Mods") + textbutton _("Show Mod Screenshots") action [Function(onclick_audio, persistent.show_mod_screenshots), ToggleVariable("persistent.show_mod_screenshots", True, False)] + textbutton _("Enable New Mods") action [Function(onclick_audio, persistent.newmods_default_state), ToggleVariable("persistent.newmods_default_state", True, False)] + if renpy.variant(["mobile", "steam_deck"]): vbox: style_prefix "check" @@ -1301,6 +1301,10 @@ screen keyboard_help(): label _("Page Down") text _("Rolls forward to later dialogue.") + hbox: + label _("Backspace") + text _("Hides mod details. Shows mod errors if there is any.") + hbox: label "H" text _("Hides the user interface.")