From fc4ace312013216360f544e06e50cdc0dab4e45a Mon Sep 17 00:00:00 2001 From: Johan Manuel Date: Thu, 21 Jul 2016 00:26:36 +0200 Subject: Fix the rotation not updating in the inspector with Controls --- scene/gui/control.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index c176e50cee..c08e10b9ff 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -2262,6 +2262,7 @@ void Control::set_rotation(float p_radians) { data.rotation=p_radians; update(); _notify_transform(); + _change_notify("rect/rotation"); } float Control::get_rotation() const{ -- cgit v1.2.3