mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
Taskbar: Fix applet/clock area background color
To be consistent with WindowServer, the background color should be "button", not "window". This fixes the painting for themes like Nord.
This commit is contained in:
parent
083cf95813
commit
d3cafeb9d3
1 changed files with 1 additions and 1 deletions
|
@ -11,6 +11,6 @@
|
|||
void TaskbarFrame::paint_event(GUI::PaintEvent& event)
|
||||
{
|
||||
GUI::Painter painter(*this);
|
||||
painter.fill_rect(rect(), palette().window());
|
||||
painter.fill_rect(rect(), palette().button());
|
||||
Frame::paint_event(event);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue