1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:37:42 +00:00

DisplaySettings: Replace the monitor image with something more thematic

This is a drawing of my own monitor in a familiar style. :^)
This commit is contained in:
Andreas Kling 2021-05-18 22:06:32 +02:00
parent a57f152ec7
commit 83f43b6464
3 changed files with 2 additions and 3 deletions

View file

@ -14,7 +14,8 @@ namespace DisplaySettings {
MonitorWidget::MonitorWidget()
{
m_monitor_bitmap = Gfx::Bitmap::load_from_file("/res/graphics/monitor.png");
m_monitor_rect = { 8, 9, 320, 180 };
m_monitor_rect = { 12, 13, 280, 158 };
set_fixed_size(304, 201);
}
bool MonitorWidget::set_wallpaper(String path)