From e2e07b94056010ac86096b8a2f9eaa9ae817485f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 10 May 2019 22:59:09 +0200 Subject: [PATCH] GLayout: Default to 4 pixels of spacing(). --- LibGUI/GLayout.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GLayout.h b/LibGUI/GLayout.h index 765e6fb070..4d07f73546 100644 --- a/LibGUI/GLayout.h +++ b/LibGUI/GLayout.h @@ -49,6 +49,6 @@ protected: Vector m_entries; GMargins m_margins; - int m_spacing { 0 }; + int m_spacing { 4 }; };