From 5cafb011f5b3cc2aef780f767e0bf054d18efc0f Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Fri, 29 Jan 2021 11:41:53 -0600 Subject: Fix music_display not stretching properly, reconsolidate ForegroundLayer into InterjectionLayer, rename InterjectionLayer to SplashLayer (#436) * more intelligent separation * separation 2 electric boogaloo * rename InterjectionLayer to SplashLayer * remove redundant layer type * comments and cleanup * fix incorrect use of continuous * remove nonfunctional check * fix additive not coloring correctly Co-authored-by: Crystalwarrior --- include/courtroom.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/courtroom.h') diff --git a/include/courtroom.h b/include/courtroom.h index 04b166f2..cebdfe24 100644 --- a/include/courtroom.h +++ b/include/courtroom.h @@ -605,7 +605,7 @@ private: QWidget *ui_viewport; BackgroundLayer *ui_vp_background; - ForegroundLayer *ui_vp_speedlines; + SplashLayer *ui_vp_speedlines; CharLayer *ui_vp_player_char; CharLayer *ui_vp_sideplayer_char; BackgroundLayer *ui_vp_desk; @@ -614,10 +614,10 @@ private: QLabel *ui_vp_showname; InterfaceLayer *ui_vp_chat_arrow; QTextEdit *ui_vp_message; - InterfaceLayer *ui_vp_testimony; - InterjectionLayer *ui_vp_wtce; + SplashLayer *ui_vp_testimony; + SplashLayer *ui_vp_wtce; EffectLayer *ui_vp_effect; - InterjectionLayer *ui_vp_objection; + SplashLayer *ui_vp_objection; QTextEdit *ui_ic_chatlog; -- cgit