diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-08-29 20:11:07 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-29 20:11:07 -0300 |
commit | 9c3bddfac2d80b0e52b94eeace58dbfd249459e7 (patch) | |
tree | 574b87e5335c05699f98fde13d2f8812a7325a73 /editor/plugins/script_editor_plugin.cpp | |
parent | 1564a146b3ce8140a039eefbfcdaf8a2b8dc728b (diff) | |
parent | 8bd92a96a40b6d680c2e416f86fae30757766bf3 (diff) | |
download | redot-engine-9c3bddfac2d80b0e52b94eeace58dbfd249459e7.tar.gz |
Merge pull request #10745 from neikeq/fix-docdata-and-stuff
DocData and virtual method type hints fixes
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 6f35ca1b0c..fc11f561c7 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -2160,8 +2160,8 @@ void ScriptEditor::_bind_methods() { ClassDB::bind_method(D_METHOD("get_current_script"), &ScriptEditor::_get_current_script); ClassDB::bind_method(D_METHOD("get_open_scripts"), &ScriptEditor::_get_open_scripts); - ADD_SIGNAL(MethodInfo("editor_script_changed", PropertyInfo(Variant::OBJECT, "script:Script"))); - ADD_SIGNAL(MethodInfo("script_close", PropertyInfo(Variant::OBJECT, "script:Script"))); + ADD_SIGNAL(MethodInfo("editor_script_changed", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script"))); + ADD_SIGNAL(MethodInfo("script_close", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script"))); } ScriptEditor::ScriptEditor(EditorNode *p_editor) { |