diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-11 01:48:09 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-11 01:48:09 +0200 |
commit | f337616741b690feb36ed8e104df85ed5117daaa (patch) | |
tree | ddf346dd5c7f3871d56f8457e3a496e829ae51ae /Widgets/Widget.cpp | |
parent | aee66e011954b4a071edfca0e5ebf124da5f0ffb (diff) | |
download | serenity-f337616741b690feb36ed8e104df85ed5117daaa.zip |
More hacking on Widgets.
Diffstat (limited to 'Widgets/Widget.cpp')
-rw-r--r-- | Widgets/Widget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Widgets/Widget.cpp b/Widgets/Widget.cpp index a51cb0ba7c..9a1b66b16f 100644 --- a/Widgets/Widget.cpp +++ b/Widgets/Widget.cpp @@ -6,6 +6,8 @@ Widget::Widget(Widget* parent) : Object(parent) { + m_backgroundColor = Color(255, 255, 255); + m_foregroundColor = Color(0, 0, 0); } Widget::~Widget() |