From ab9f07284805bcb0094afe0769a421d62f89584f Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Thu, 16 May 2024 15:59:33 +0100 Subject: [PATCH] Detach console --- game/scripts/gui/say.rpy | 1 - game/scripts/utility/devtools.rpy | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/game/scripts/gui/say.rpy b/game/scripts/gui/say.rpy index 7c0c2f93..affa330b 100644 --- a/game/scripts/gui/say.rpy +++ b/game/scripts/gui/say.rpy @@ -209,7 +209,6 @@ define choice_width = int(config.screen_width/2) screen choice(items, menu_yalign=.6): tag menu - modal True zorder 0 layer "interface" diff --git a/game/scripts/utility/devtools.rpy b/game/scripts/utility/devtools.rpy index 7f1d6868..b0f22e9c 100644 --- a/game/scripts/utility/devtools.rpy +++ b/game/scripts/utility/devtools.rpy @@ -170,11 +170,10 @@ screen placeholder(): add Placeholder("bg") add Placeholder("girl") - init 999 python hide: def set_screen_layer(layer, *screens): for scr_name in screens: for _, scr in renpy.display.screen.get_all_screen_variants(scr_name): scr.layer = layer - set_screen_layer("interface", "_performance", "_image_load_log") + set_screen_layer("interface", "_performance", "_image_load_log", "_console")