From 123a3cad778f83a0d2b5813ebe5d61caa75a1a2b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 4 Sep 2019 18:54:03 +0200 Subject: [PATCH] GLayout: Change default spacing to 3 pixels --- Libraries/LibGUI/GLayout.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/GLayout.h b/Libraries/LibGUI/GLayout.h index 39418a712f..c98e113426 100644 --- a/Libraries/LibGUI/GLayout.h +++ b/Libraries/LibGUI/GLayout.h @@ -49,5 +49,5 @@ protected: Vector m_entries; GMargins m_margins; - int m_spacing { 4 }; + int m_spacing { 3 }; };