diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-23 17:27:20 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-23 17:27:20 +0100 |
commit | ca85ac26d4063bd0ad1be2b80277d9af4cb8944a (patch) | |
tree | 08416ed7c3ffb25989da708dbc8594de5aaa190e /Userland/Services | |
parent | fb9ee26c43df14f582db2a39aee87ca161ed0884 (diff) | |
download | serenity-ca85ac26d4063bd0ad1be2b80277d9af4cb8944a.zip |
WebContent: Fill OOPWV with palette base color when there's no content
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/WebContent/PageHost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/PageHost.cpp b/Userland/Services/WebContent/PageHost.cpp index c962f99e82..b5d22f0418 100644 --- a/Userland/Services/WebContent/PageHost.cpp +++ b/Userland/Services/WebContent/PageHost.cpp @@ -84,7 +84,7 @@ void PageHost::paint(const Gfx::IntRect& content_rect, Gfx::Bitmap& target) auto* layout_root = this->layout_root(); if (!layout_root) { - painter.fill_rect(bitmap_rect, Color::White); + painter.fill_rect(bitmap_rect, palette().base()); return; } |