diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-07-05 03:50:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-05 03:50:31 +0200 |
commit | 43748f67be6b7ba68ed2e941d30d753e1868a567 (patch) | |
tree | a7d752ada8a0e253110ca8f4ba7481610f538f21 /scene | |
parent | e3c8ac43c61b19a44f6ee9a6b88d4187fb873a2c (diff) | |
parent | 709948aa5aef188560a40423e41b1bb7cd34737b (diff) |
Merge pull request #19351 from guilhermefelipecgs/fix_reversed_text
Fixes to the new inspector
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 3808b788c7..068af42260 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1385,7 +1385,7 @@ void Control::set_anchor(Margin p_margin, float p_anchor, bool p_keep_margin, bo } update(); - _change_notify(); + _change_notify("anchor"); } void Control::_set_anchor(Margin p_margin, float p_anchor) { |