diff options
author | Kristupas Stumbrys <kristupas.stumbrys@gmail.com> | 2017-05-28 16:38:22 +0300 |
---|---|---|
committer | Kristupas Stumbrys <kristupas.stumbrys@gmail.com> | 2017-05-28 16:38:22 +0300 |
commit | 0251e9eb01aafdc1ec5316178a11f0fd9fb7ddbc (patch) | |
tree | 1f15ffc22d9535ed0be77e4b2ec63fff16cdad22 /scene/gui/control.cpp | |
parent | ce8bf1592abfb0e9382d437fc453d0ffd500e076 (diff) |
Fixing typo for rect_position in _change_notify call for Control
Diffstat (limited to 'scene/gui/control.cpp')
-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 1263dc91be..83fa20bee5 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1352,7 +1352,7 @@ void Control::_change_notify_margins() { _change_notify("margin_top"); _change_notify("margin_right"); _change_notify("margin_bottom"); - _change_notify("rect_pos"); + _change_notify("rect_position"); _change_notify("rect_size"); } |