1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 21:25:07 +00:00

WindowServer: Tweak CPU usage history color.

This commit is contained in:
Andreas Kling 2019-03-10 01:22:36 +01:00
parent 94df0c1ba6
commit 2336d43abc

View file

@ -1019,7 +1019,7 @@ void WSWindowManager::draw_menubar()
m_back_painter->draw_line(
{ cpu_rect.x() + i, cpu_rect.bottom() },
{ cpu_rect.x() + i, (int)(cpu_rect.y() + (cpu_rect.height() - (cpu_usage * (float)cpu_rect.height()))) },
Color(0, 200, 0)
Color::from_rgb(0xaa6d4b)
);
++i;
}