diff options
| author | Rémi Verschelde | 2018-05-18 00:08:07 +0200 |
|---|---|---|
| committer | GitHub | 2018-05-18 00:08:07 +0200 |
| commit | c8831fefc68fb77c3a6a23562619c2a63bc68160 (patch) | |
| tree | e95f782c18f43e626edb5efeca2cf8a41396b13f /editor/plugins/script_editor_plugin.cpp | |
| parent | 4b5227ff7755aa19aa57452c49e9466252fcb4a0 (diff) | |
| parent | 9a365a1216b8fe9f394d6efdd9550eab4e899eca (diff) | |
| download | godot-c8831fefc68fb77c3a6a23562619c2a63bc68160.tar.gz godot-c8831fefc68fb77c3a6a23562619c2a63bc68160.tar.zst godot-c8831fefc68fb77c3a6a23562619c2a63bc68160.zip | |
Merge pull request #18962 from djrm/pr_inspector_dock
Moved inspector functionality from EditorNode to InspectorDock.
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index c0f91455f..422d19c0e 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -1188,7 +1188,7 @@ void ScriptEditor::_notification(int p_what) { case NOTIFICATION_READY: { get_tree()->connect("tree_changed", this, "_tree_changed"); - editor->connect("request_help", this, "_request_help"); + editor->get_inspector_dock()->connect("request_help", this, "_request_help"); editor->connect("request_help_search", this, "_help_search"); editor->connect("request_help_index", this, "_help_index"); } break; |
