From eb7c72feb20731bff8bc3179b845b0ab73614546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=28=C2=B4=E3=83=BB=CF=89=E3=83=BB=EF=BD=80=29?= Date: Fri, 5 Nov 2021 13:33:49 +0900 Subject: [PATCH] FIX: The banner displays a white upper frame unrelated to the theme. --- gui/banner.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/gui/banner.cc b/gui/banner.cc index 1719830033..cfd825f4d1 100644 --- a/gui/banner.cc +++ b/gui/banner.cc @@ -187,9 +187,6 @@ bool banner_t::action_triggered( gui_action_creator_t *comp, value_t) void banner_t::draw(scr_coord pos, scr_size size ) { gui_frame_t::draw( pos, size ); - - // add white line on top since this frame has no title bar. - display_fillbox_wh_clip_rgb(pos.x, pos.y, size.w, 1, color_idx_to_rgb(COL_GREY6), false); } void banner_text_t::draw(scr_coord offset)