From 07a9b2c4e64eca89e472ad509fae2acf39905640 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 11 Apr 2019 13:16:18 +0200 Subject: [PATCH] VisualBuilder: Let's use 5 pixels for the grid size for now. --- Applications/VisualBuilder/VBForm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/VisualBuilder/VBForm.h b/Applications/VisualBuilder/VBForm.h index 978df684ee5..8e9d3575416 100644 --- a/Applications/VisualBuilder/VBForm.h +++ b/Applications/VisualBuilder/VBForm.h @@ -33,7 +33,7 @@ private: void grabber_mousedown_event(GMouseEvent&, VBWidget&, Direction grabber); String m_name; - int m_grid_size { 8 }; + int m_grid_size { 5 }; bool m_should_snap_to_grid { true }; Vector> m_widgets; WeakPtr m_selected_widget;