LibGUI: Don't fill widgets with background color by defualt.

This commit is contained in:
Andreas Kling 2019-03-10 13:16:36 +01:00
commit 5d69bf06d2
Notes: sideshowbarker 2024-07-19 15:05:30 +09:00
14 changed files with 12 additions and 16 deletions

View file

@ -13,7 +13,6 @@ GStatusBar::GStatusBar(GWidget* parent)
layout()->set_margins({ 4, 2, 4, 2 });
m_label = new GLabel(this);
m_label->set_text_alignment(TextAlignment::CenterLeft);
m_label->set_fill_with_background_color(false);
}
GStatusBar::~GStatusBar()