diff options
author | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2018-07-04 20:08:45 -0300 |
---|---|---|
committer | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2018-07-04 20:08:45 -0300 |
commit | 709948aa5aef188560a40423e41b1bb7cd34737b (patch) | |
tree | 4252964b5fdf1dd8cfcf9c5ff8999c8a249a07de /scene/gui | |
parent | a9acdd84b7a6fd074f21d500a64976326f6cbb67 (diff) |
Fixes to the new inspector
- Fix inspector dock not updating tree for main resource;
- Fixes the inspector input text reverted during typing;
- Add method bind for "refresh" used by MultiNodeEdit;
Diffstat (limited to 'scene/gui')
-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 a738687a70..526fafcb7d 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1411,7 +1411,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) { |