summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-05-28 17:00:25 +0200
committerGitHub <noreply@github.com>2017-05-28 17:00:25 +0200
commita100f0187029305110a71eb0094eafa8264d46af (patch)
tree1fbbc5e7bd610d88ae1151af042a140a6d03ce77
parentc814d65fae9841810e0ea28e24f806187fbd63ed (diff)
parent0251e9eb01aafdc1ec5316178a11f0fd9fb7ddbc (diff)
Merge pull request #8972 from Kristonitas/master
Fixing typo for rect_position in _change_notify call for Control
-rw-r--r--scene/gui/control.cpp2
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");
}