浏览代码

VisualBuilder: Tweak form grid color.

Andreas Kling 6 年之前
父节点
当前提交
f95ba881f0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Applications/VisualBuilder/VBForm.cpp

+ 1 - 1
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 y = 0; y < height(); y += m_grid_size) {
         for (int x = 0; x < width(); x += 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));
         }
         }
     }
     }
 }
 }