diff options
author | kobewi <kobewi4e@gmail.com> | 2023-06-22 23:14:14 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-06-23 10:53:39 +0200 |
commit | 5dde57e95827806101cede5d46391f2bd4b9150c (patch) | |
tree | 49b5910fd3ae7a81bdfc63c74ef0288d9162d97d /editor/plugins/shader_editor_plugin.cpp | |
parent | fd31dc7f32855f23f0c38792fe42d501165f708c (diff) | |
download | redot-engine-5dde57e95827806101cede5d46391f2bd4b9150c.tar.gz |
Remember only permanent bottom tabs
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 b27bd49266..3290e57213 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); + button = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Shader Editor"), window_wrapper, true); // 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); |