summaryrefslogtreecommitdiff
path: root/scene/main
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-04-01 12:57:26 +0200
committerGitHub <noreply@github.com>2020-04-01 12:57:26 +0200
commit96e654335a72c32c8ec2595d86360aeccb7eaaa1 (patch)
tree0089caf19d08d5d54b75fbec8bb76e90c4fe8fd2 /scene/main
parentf7b8d0c688dc15b8841ac13990569dda81bf0652 (diff)
parentcb53b1d88ec4795c05218f7f809dec5d0af981d2 (diff)
Merge pull request #37481 from ThakeeNathees/bind-method-typo
some typo in method binds fixed
Diffstat (limited to 'scene/main')
-rw-r--r--scene/main/window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/window.cpp b/scene/main/window.cpp
index 3a8f7ebb60..406f130b71 100644
--- a/scene/main/window.cpp
+++ b/scene/main/window.cpp
@@ -1285,7 +1285,7 @@ void Window::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_exclusive", "exclusive"), &Window::set_exclusive);
ClassDB::bind_method(D_METHOD("is_exclusive"), &Window::is_exclusive);
- ClassDB::bind_method(D_METHOD("can_draw"), &Window::is_transient);
+ ClassDB::bind_method(D_METHOD("can_draw"), &Window::can_draw);
ClassDB::bind_method(D_METHOD("has_focus"), &Window::has_focus);
ClassDB::bind_method(D_METHOD("grab_focus"), &Window::grab_focus);