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
parent 6836e21d1c
commit 5d69bf06d2
14 changed files with 12 additions and 16 deletions

View File

@@ -7,6 +7,12 @@ GLabel::GLabel(GWidget* parent)
{
}
GLabel::GLabel(const String& text, GWidget* parent)
: GWidget(parent)
, m_text(text)
{
}
GLabel::~GLabel()
{
}