diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-30 17:01:59 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-30 17:01:59 +0200 |
commit | f95ba881f0a876cdae11b4b9223de9e0f8988ac1 (patch) | |
tree | 18d14fa446a8a940ff45e6f72557c4e8f2f75e85 /Applications | |
parent | 86aad5081839ba834bb938abad934b73061f24c1 (diff) | |
download | serenity-f95ba881f0a876cdae11b4b9223de9e0f8988ac1.zip |
VisualBuilder: Tweak form grid color.
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/VisualBuilder/VBForm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } } } |