diff options
author | kobewi <kobewi4e@gmail.com> | 2023-04-05 15:45:41 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-07-18 14:27:56 +0200 |
commit | b883f3218895ba1992601b1721667823a99bca62 (patch) | |
tree | 9d87aa9d6789b3f85d60f5495810cf9526ccebbb /editor/plugins/shader_editor_plugin.cpp | |
parent | 000471ee5691fa6f6a212944084d3aa434acc5b8 (diff) | |
download | redot-engine-b883f3218895ba1992601b1721667823a99bca62.tar.gz |
Check for unsaved changes when closing a scene
Diffstat (limited to 'editor/plugins/shader_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/shader_editor_plugin.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index 89eb6e88a3..247586fbfc 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -287,14 +287,19 @@ void ShaderEditorPlugin::get_window_layout(Ref<ConfigFile> p_layout) { p_layout->set_value("ShaderEditor", "selected_shader", selected_shader); } -String ShaderEditorPlugin::get_unsaved_status() const { +String ShaderEditorPlugin::get_unsaved_status(const String &p_for_scene) const { + if (!p_for_scene.is_empty()) { + // TODO: handle built-in shaders. + return String(); + } + // TODO: This should also include visual shaders and shader includes, but save_external_data() doesn't seem to save them... PackedStringArray unsaved_shaders; for (uint32_t i = 0; i < edited_shaders.size(); i++) { if (edited_shaders[i].shader_editor) { if (edited_shaders[i].shader_editor->is_unsaved()) { if (unsaved_shaders.is_empty()) { - unsaved_shaders.append("Save changes to the following shaders(s) before quitting?"); + unsaved_shaders.append(TTR("Save changes to the following shaders(s) before quitting?")); } unsaved_shaders.append(edited_shaders[i].shader_editor->get_name()); } |