diff options
author | Thakee Nathees <thakeenathees@gmail.com> | 2020-04-01 07:19:23 +0530 |
---|---|---|
committer | Thakee Nathees <thakeenathees@gmail.com> | 2020-04-01 14:01:18 +0530 |
commit | cb53b1d88ec4795c05218f7f809dec5d0af981d2 (patch) | |
tree | 148acd41d1378f11a9d95efea84798cda8acb737 /servers | |
parent | b383484e445b1554c811556181a7815e0308fd62 (diff) |
some typo in method binds fixed
Diffstat (limited to 'servers')
-rw-r--r-- | servers/display_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/display_server.cpp b/servers/display_server.cpp index 9798c57707..d3e81d5d68 100644 --- a/servers/display_server.cpp +++ b/servers/display_server.cpp @@ -434,7 +434,7 @@ void DisplayServer::_bind_methods() { ClassDB::bind_method(D_METHOD("native_video_unpause"), &DisplayServer::native_video_unpause); ClassDB::bind_method(D_METHOD("dialog_show", "title", "description", "buttons", "callback"), &DisplayServer::dialog_show); - ClassDB::bind_method(D_METHOD("dialog_input_text", "title", "description", "existing_text", "callback"), &DisplayServer::dialog_show); + ClassDB::bind_method(D_METHOD("dialog_input_text", "title", "description", "existing_text", "callback"), &DisplayServer::dialog_input_text); ClassDB::bind_method(D_METHOD("get_latin_keyboard_variant"), &DisplayServer::get_latin_keyboard_variant); |