瀏覽代碼

Merge pull request #100707 from dalexeev/editor-restore-old-ctrl-click

Editor: Restore old `Ctrl+Click` behavior
Thaddeus Crews 9 月之前
父節點
當前提交
3df8eb5abc
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/plugins/script_text_editor.cpp

+ 1 - 1
editor/plugins/script_text_editor.cpp

@@ -971,7 +971,7 @@ void ScriptTextEditor::_lookup_symbol(const String &p_symbol, int p_row, int p_c
 	} else if (lc_error == OK) {
 	} else if (lc_error == OK) {
 		_goto_line(p_row);
 		_goto_line(p_row);
 
 
-		if (!result.class_name.is_empty() && EditorHelp::get_doc_data()->class_list.has(result.class_name)) {
+		if (!result.class_name.is_empty() && EditorHelp::get_doc_data()->class_list.has(result.class_name) && !EditorHelp::get_doc_data()->class_list[result.class_name].is_script_doc) {
 			switch (result.type) {
 			switch (result.type) {
 				case ScriptLanguage::LOOKUP_RESULT_CLASS: {
 				case ScriptLanguage::LOOKUP_RESULT_CLASS: {
 					emit_signal(SNAME("go_to_help"), "class_name:" + result.class_name);
 					emit_signal(SNAME("go_to_help"), "class_name:" + result.class_name);