summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro J. Estébanez <RandomShaper@users.noreply.github.com>2018-06-06 20:10:43 +0200
committerGitHub <noreply@github.com>2018-06-06 20:10:43 +0200
commit12a87b257f37499611ac37abb55468b1931426ec (patch)
tree9b967a4c872eab79e52e7f0b883b1133af67d949
parentaf15a1f10e9928d545065952b123b3eaa6f4b036 (diff)
Remove default non-zero left margin
-rw-r--r--scene/resources/default_theme/default_theme.cpp2
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 3ea856541e..23541f5de2 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);