diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-04 18:54:03 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-04 18:54:03 +0200 |
commit | 123a3cad778f83a0d2b5813ebe5d61caa75a1a2b (patch) | |
tree | 37c30bfaa57a88747478934ac1a5209a61513ecf /Libraries/LibGUI/GLayout.h | |
parent | a6bb955c9db37e65d67ebdf9685fa0e5412fe5a7 (diff) | |
download | serenity-123a3cad778f83a0d2b5813ebe5d61caa75a1a2b.zip |
GLayout: Change default spacing to 3 pixels
Diffstat (limited to 'Libraries/LibGUI/GLayout.h')
-rw-r--r-- | Libraries/LibGUI/GLayout.h | 2 |
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 }; }; |