summaryrefslogtreecommitdiff
path: root/scene/gui
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-05-09 22:20:35 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-05-09 22:20:35 +0200
commitbc31be9812b165c677584a2be81a5a9bd71d8ecf (patch)
tree541114aed7597138c64070899ef5d508e4192b42 /scene/gui
parent0dfc4a2029e7a39ce521cc81da94fdaf73341ab2 (diff)
Sync classes.xml with current sources
Also fix a typo in the binding of Control::set_drag_forwarding.
Diffstat (limited to 'scene/gui')
-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 047b854862..d0e5e8b7ae 100644
--- a/scene/gui/control.cpp
+++ b/scene/gui/control.cpp
@@ -2320,7 +2320,7 @@ void Control::_bind_methods() {
ObjectTypeDB::bind_method(_MD("grab_click_focus"),&Control::grab_click_focus);
- ObjectTypeDB::bind_method(_MD("set_drag_forwarding;","target:Control"),&Control::set_drag_forwarding);
+ ObjectTypeDB::bind_method(_MD("set_drag_forwarding","target:Control"),&Control::set_drag_forwarding);
ObjectTypeDB::bind_method(_MD("set_drag_preview","control:Control"),&Control::set_drag_preview);
ObjectTypeDB::bind_method(_MD("warp_mouse","to_pos"),&Control::warp_mouse);