diff options
author | jsjtxietian <jsjtxietian@outlook.com> | 2024-07-26 18:07:00 +0800 |
---|---|---|
committer | jsjtxietian <jsjtxietian@outlook.com> | 2024-07-26 18:07:00 +0800 |
commit | 3be7aaa624808a2548eb03ca6f8817f2cb08d31d (patch) | |
tree | 5ce7adac9773e582a7704c4fd1e6b7192148a8c3 /editor/plugins/shader_editor_plugin.cpp | |
parent | e343dbbcc1030f04dc5833f1c19d267a17332ca9 (diff) | |
download | redot-engine-3be7aaa624808a2548eb03ca6f8817f2cb08d31d.tar.gz |
Update shader list after save `gdshaderinc` file
Diffstat (limited to 'editor/plugins/shader_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index d7b88511d9..9d1576cdf2 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -412,7 +412,7 @@ void ShaderEditorPlugin::_close_builtin_shaders_from_scene(const String &p_scene void ShaderEditorPlugin::_resource_saved(Object *obj) { // May have been renamed on save. for (EditedShader &edited_shader : edited_shaders) { - if (edited_shader.shader.ptr() == obj) { + if (edited_shader.shader.ptr() == obj || edited_shader.shader_inc.ptr() == obj) { _update_shader_list(); return; } |