diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-04-04 00:21:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 00:21:12 +0200 |
commit | 4d3ed11212c779a1c340916dee47b2021382047f (patch) | |
tree | d8842c2c8ab02d868f9b85e434ad73c3da153b05 /scene/gui/control.cpp | |
parent | 6fc1a88ea1c669276bb195278dbe8c3e03d6e59e (diff) | |
parent | 0a287cfe4cfe721b3909e9722023c3d469afa886 (diff) |
Merge pull request #8248 from Hinsbart/fix_notify_renames
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 { |