diff options
Diffstat (limited to 'Widgets/Widget.h')
-rw-r--r-- | Widgets/Widget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Widgets/Widget.h b/Widgets/Widget.h index 02176c35d0..f209f169ad 100644 --- a/Widgets/Widget.h +++ b/Widgets/Widget.h @@ -90,10 +90,10 @@ private: Window* m_window { nullptr }; Rect m_relativeRect; - Color m_backgroundColor; - Color m_foregroundColor; + Color m_backgroundColor { 0xffffff }; + Color m_foregroundColor { 0x000000 }; RetainPtr<Font> m_font; bool m_hasPendingPaintEvent { false }; - bool m_fillWithBackgroundColor { false }; + bool m_fillWithBackgroundColor { true }; }; |