diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-20 22:29:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 22:29:17 +0100 |
commit | e6170aae39194a6ada312ff8a3f53a36bf16aff8 (patch) | |
tree | a7459d240221dc34bb8f87bff05f88c5c50deae6 /editor/plugins/visual_shader_editor_plugin.cpp | |
parent | d681d99e126bcac87823510ba2a71af0ace6e8dc (diff) | |
parent | aa1102fc536bd7b3a2cff703d79713c454af7e6c (diff) |
Merge pull request #55066 from trollodel/less_singletons_in_editornode
Diffstat (limited to 'editor/plugins/visual_shader_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/visual_shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp index f05ff72e5d..704cb891e8 100644 --- a/editor/plugins/visual_shader_editor_plugin.cpp +++ b/editor/plugins/visual_shader_editor_plugin.cpp @@ -4967,7 +4967,7 @@ public: } void _open_inspector(RES p_resource) { - EditorNode::get_singleton()->get_inspector()->edit(p_resource.ptr()); + InspectorDock::get_inspector_singleton()->edit(p_resource.ptr()); } bool updating; |