summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2020-07-29 17:51:27 +0100
committerPaulb23 <p_batty@hotmail.co.uk>2020-07-29 17:51:27 +0100
commitb289bb514b39af71929ca462a29837100494691d (patch)
treed72c6ce9ddd57f17249dfa7a4f55e1e5cdaaadff /editor
parent7b17cd2a73d841ac8a3398fbeb8805a3bd707470 (diff)
Fixed script_editor info_clicked signal not being connected
Diffstat (limited to 'editor')
-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();