summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorYuri Sizov <11782833+YuriSizov@users.noreply.github.com>2023-04-26 16:54:25 +0200
committerGitHub <noreply@github.com>2023-04-26 16:54:25 +0200
commit26fb911f79d7b16c46ca476923fe1f32ab5d27ed (patch)
treef194bb48dea30dc8a18e3989b948f5f57d82232d /editor/plugins/script_editor_plugin.cpp
parente2e870c6118f6e9463c8907c947102f913f543de (diff)
parent6783ff69c06a5c6fcb0e22802fedcc1fa32ac25c (diff)
downloadredot-engine-26fb911f79d7b16c46ca476923fe1f32ab5d27ed.tar.gz
Merge pull request #72095 from anvilfolk/gd-docs
Improve GDScript documentation generation & behavior
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
-rw-r--r--editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index 7be4d76f1e..e928abe00e 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -3316,7 +3316,7 @@ void ScriptEditor::_help_class_open(const String &p_class) {
eh->set_name(p_class);
tab_container->add_child(eh);
_go_to_tab(tab_container->get_tab_count() - 1);
- eh->go_to_class(p_class, 0);
+ eh->go_to_class(p_class);
eh->connect("go_to_help", callable_mp(this, &ScriptEditor::_help_class_goto));
_add_recent_script(p_class);
_sort_list_on_update = true;