From af2142393f6c526b672355928ed69b14d9a1a623 Mon Sep 17 00:00:00 2001 From: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com> Date: Tue, 26 Mar 2024 22:05:15 +0100 Subject: [PATCH] Remove another throwaway variable (cherry picked from commit f39cebc06fc4537fe51bf8a25053224f8c5e2ce7) --- game/scripts/wardrobe/studio.rpy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/game/scripts/wardrobe/studio.rpy b/game/scripts/wardrobe/studio.rpy index 27372133..3f8003b5 100644 --- a/game/scripts/wardrobe/studio.rpy +++ b/game/scripts/wardrobe/studio.rpy @@ -293,13 +293,12 @@ screen studio(): vbox: label "Overlay" default ov_dict = studio.choices["overlay"] - $ ov_active = bool(ov_dict["image"] > 0) hbox: add "interface/studio/overlay.webp" size icon_size bar value DictValue(ov_dict, "image", len(ov_dict["list"])-1, False, step=1, force_step=True) tooltip "Overlay Image" - if ov_active: + if ov_dict["image"] > 0: hbox: add "interface/studio/hue.webp" size icon_size bar value DictValue(ov_dict, "hue", 360.0, False, step=1.0, force_step=True) tooltip "Overlay Hue"