From 5f83ccd4c11a9e304c060c9086288c88dadf7f7c Mon Sep 17 00:00:00 2001 From: "born a rick, raised a morty, died a jerry" Date: Sat, 24 Nov 2018 15:22:19 -0500 Subject: [PATCH] explicitly set chartpreview notefield visibility when toggling --- .../BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua index b6b6168a3f..a3f26d7664 100644 --- a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua +++ b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua @@ -117,9 +117,11 @@ local function toggleNoteField() if song then if mcbootlarder:GetVisible() then mcbootlarder:visible(false) + mcbootlarder:GetChild("NoteField"):visible(false) MESSAGEMAN:Broadcast("ChartPreviewOff") else mcbootlarder:visible(true) + mcbootlarder:GetChild("NoteField"):visible(true) MESSAGEMAN:Broadcast("ChartPreviewOn") end end