From 7c106ccb1b1992207f48339a74eccb0cfb71d68b Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Mon, 19 Jul 2021 22:25:22 -0700 Subject: [PATCH] fixed layering in charting state --- source/ChartingState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 421da72..816a3f5 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -348,7 +348,6 @@ class ChartingState extends MusicBeatState UI_box.resize(300, 400); UI_box.x = FlxG.width / 2 + 40; UI_box.y = 20; - add(UI_box); var opt_tabs = [{name: "Options", label:'Song Options'}, {name: "Events", label:'Song Events'}]; @@ -360,6 +359,7 @@ class ChartingState extends MusicBeatState UI_options.x = UI_box.x; UI_options.y = FlxG.height - 300; add(UI_options); + add(UI_box); addSongUI();