summaryrefslogtreecommitdiffstats
path: root/editor/plugins/shader_editor_plugin.cpp
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2024-07-26 18:07:00 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2024-07-26 18:07:00 +0800
commit3be7aaa624808a2548eb03ca6f8817f2cb08d31d (patch)
tree5ce7adac9773e582a7704c4fd1e6b7192148a8c3 /editor/plugins/shader_editor_plugin.cpp
parente343dbbcc1030f04dc5833f1c19d267a17332ca9 (diff)
downloadredot-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.cpp2
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;
}