summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GLayout.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-04 18:54:03 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-04 18:54:03 +0200
commit123a3cad778f83a0d2b5813ebe5d61caa75a1a2b (patch)
tree37c30bfaa57a88747478934ac1a5209a61513ecf /Libraries/LibGUI/GLayout.h
parenta6bb955c9db37e65d67ebdf9685fa0e5412fe5a7 (diff)
downloadserenity-123a3cad778f83a0d2b5813ebe5d61caa75a1a2b.zip
GLayout: Change default spacing to 3 pixels
Diffstat (limited to 'Libraries/LibGUI/GLayout.h')
-rw-r--r--Libraries/LibGUI/GLayout.h2
1 files changed, 1 insertions, 1 deletions
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<Entry> m_entries;
GMargins m_margins;
- int m_spacing { 4 };
+ int m_spacing { 3 };
};