summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-07-29 19:09:43 +0200
committerGitHub <noreply@github.com>2020-07-29 19:09:43 +0200
commit00e1175b7dcd01be9b13c8fe852af68a916f45e6 (patch)
tree96c97f2ac14e1d0cc79bc7883923a28fa3d58872
parentfa6cd2cd77c6521cbb8d89532c0fda20892a8a2c (diff)
parentb289bb514b39af71929ca462a29837100494691d (diff)
Merge pull request #40841 from Paulb23/fix_info_clicked_signal
Fixed script_editor info_clicked signal not being connected
-rw-r--r--editor/plugins/script_text_editor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp
index 1a88562c13..4b89ca1216 100644
--- a/editor/plugins/script_text_editor.cpp
+++ b/editor/plugins/script_text_editor.cpp
@@ -1639,6 +1639,7 @@ void ScriptTextEditor::_enable_code_editor() {
code_editor->get_text_edit()->connect("breakpoint_toggled", callable_mp(this, &ScriptTextEditor::_breakpoint_toggled));
code_editor->get_text_edit()->connect("symbol_lookup", callable_mp(this, &ScriptTextEditor::_lookup_symbol));
code_editor->get_text_edit()->connect("symbol_validate", callable_mp(this, &ScriptTextEditor::_validate_symbol));
+ code_editor->get_text_edit()->connect("info_clicked", callable_mp(this, &ScriptTextEditor::_lookup_connections));
code_editor->get_text_edit()->connect("gui_input", callable_mp(this, &ScriptTextEditor::_text_edit_gui_input));
code_editor->show_toggle_scripts_button();