VisualBuilder: Tweak form grid color.

This commit is contained in:
Andreas Kling 2019-04-30 17:01:59 +02:00
parent 86aad50818
commit f95ba881f0
Notes: sideshowbarker 2024-07-19 14:31:59 +09:00

View file

@ -73,7 +73,7 @@ void VBForm::paint_event(GPaintEvent& event)
for (int y = 0; y < height(); y += m_grid_size) {
for (int x = 0; x < width(); x += m_grid_size) {
painter.set_pixel({ x, y }, Color::Black);
painter.set_pixel({ x, y }, Color::from_rgb(0x404040));
}
}
}