From f95ba881f0a876cdae11b4b9223de9e0f8988ac1 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 30 Apr 2019 17:01:59 +0200 Subject: [PATCH] VisualBuilder: Tweak form grid color. --- Applications/VisualBuilder/VBForm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/VisualBuilder/VBForm.cpp b/Applications/VisualBuilder/VBForm.cpp index 76399ac71b..0b34fe2e4f 100644 --- a/Applications/VisualBuilder/VBForm.cpp +++ b/Applications/VisualBuilder/VBForm.cpp @@ -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)); } } }