summaryrefslogtreecommitdiff
path: root/Widgets/Widget.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-11 01:48:09 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-11 01:48:09 +0200
commitf337616741b690feb36ed8e104df85ed5117daaa (patch)
treeddf346dd5c7f3871d56f8457e3a496e829ae51ae /Widgets/Widget.cpp
parentaee66e011954b4a071edfca0e5ebf124da5f0ffb (diff)
downloadserenity-f337616741b690feb36ed8e104df85ed5117daaa.zip
More hacking on Widgets.
Diffstat (limited to 'Widgets/Widget.cpp')
-rw-r--r--Widgets/Widget.cpp2
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()