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
Notes: sideshowbarker 2024-07-19 15:05:54 +09:00

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;
}