diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-12 23:02:23 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-12 23:02:23 +0200 |
commit | e16d145cb4e69a036a93a49747404bc6dc3b6633 (patch) | |
tree | 56eb67ec7e8cdc98f8b311f05ae84a3bb506f8e3 /Widgets/TerminalWidget.cpp | |
parent | aceedaf9570bde8e5d0fcf6858b0aa930b0251b0 (diff) | |
download | serenity-e16d145cb4e69a036a93a49747404bc6dc3b6633.zip |
Some color cleanup.
Diffstat (limited to 'Widgets/TerminalWidget.cpp')
-rw-r--r-- | Widgets/TerminalWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Widgets/TerminalWidget.cpp b/Widgets/TerminalWidget.cpp index 16c62e43cf..8bc8bd815c 100644 --- a/Widgets/TerminalWidget.cpp +++ b/Widgets/TerminalWidget.cpp @@ -63,7 +63,7 @@ CharacterWithAttributes& TerminalWidget::at(unsigned row, unsigned column) void TerminalWidget::onPaint(PaintEvent&) { Painter painter(*this); - painter.fillRect(rect(), Color(0, 0, 0)); + painter.fillRect(rect(), Color::Black); auto& font = Font::defaultFont(); |