diff options
author | Andreas Haas <liu.gam3@gmail.com> | 2017-04-03 18:34:44 +0200 |
---|---|---|
committer | Andreas Haas <liu.gam3@gmail.com> | 2017-04-03 18:35:15 +0200 |
commit | 0a287cfe4cfe721b3909e9722023c3d469afa886 (patch) | |
tree | 40752b51ea85d4f3e5502f41df41432787615e24 /scene/gui/control.cpp | |
parent | ff468e2d4247fc5fc52aea866f72dc4e5b9e6815 (diff) |
Fix more property names in _change_notify calls.
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 7f9944833a..c249d3dd64 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -2158,7 +2158,7 @@ void Control::set_rotation(float p_radians) { data.rotation = p_radians; update(); _notify_transform(); - _change_notify("rect/rotation"); + _change_notify("rect_rotation"); } float Control::get_rotation() const { |