diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-06-23 15:23:36 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-06-23 15:23:36 +0200 |
commit | 8cfbc6bda295379f7c28a41f52cf89cb0d999a56 (patch) | |
tree | c9566f6c8c189357a600abf4f73af831293e26e5 /editor/plugins/shader_editor_plugin.cpp | |
parent | 9ab388c146895cfacf87d09d28c148e186f348b6 (diff) | |
download | redot-engine-8cfbc6bda295379f7c28a41f52cf89cb0d999a56.tar.gz |
Revert "Remember only permanent bottom tabs"
This reverts commit 5dde57e95827806101cede5d46391f2bd4b9150c.
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 3c576a5acb..268828e8f5 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -622,7 +622,7 @@ ShaderEditorPlugin::ShaderEditorPlugin() { empty.instantiate(); shader_tabs->add_theme_style_override("panel", empty); - button = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Shader Editor"), window_wrapper, true); + button = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Shader Editor"), window_wrapper); // Defer connect because Editor class is not in the binding system yet. EditorNode::get_singleton()->call_deferred("connect", "resource_saved", callable_mp(this, &ShaderEditorPlugin::_resource_saved), CONNECT_DEFERRED); |