diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-07-03 16:41:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 16:41:04 +0200 |
commit | 23ad85c692ebbb10df00e1a01263017e897ac4ef (patch) | |
tree | becd3452810bdd4f4eda8b0de0a56df6e99c113e | |
parent | 9e5b2ce99e94abb0039ffbf8d643ac9395f0fc41 (diff) | |
parent | 12a87b257f37499611ac37abb55468b1931426ec (diff) |
Merge pull request #19398 from godotengine/remove-left-margin
Remove default non-zero left margin
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index d64e6970bf..702953fa40 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -844,7 +844,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_constant("separation", "HBoxContainer", 4 * scale); theme->set_constant("separation", "VBoxContainer", 4 * scale); - theme->set_constant("margin_left", "MarginContainer", 8 * scale); + theme->set_constant("margin_left", "MarginContainer", 0 * scale); theme->set_constant("margin_top", "MarginContainer", 0 * scale); theme->set_constant("margin_right", "MarginContainer", 0 * scale); theme->set_constant("margin_bottom", "MarginContainer", 0 * scale); |