1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

More hacking on Widgets.

This commit is contained in:
Andreas Kling 2018-10-11 01:48:09 +02:00
parent aee66e0119
commit f337616741
15 changed files with 135 additions and 19 deletions

View file

@ -6,6 +6,8 @@
Widget::Widget(Widget* parent)
: Object(parent)
{
m_backgroundColor = Color(255, 255, 255);
m_foregroundColor = Color(0, 0, 0);
}
Widget::~Widget()