diff options
author | kobewi <kobewi4e@gmail.com> | 2024-01-30 21:33:31 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-01-30 21:33:31 +0100 |
commit | 4ad74a5663d1e38f4e95159ec1caa53bae3b8799 (patch) | |
tree | e7aee6b0393f69fff4fe3340e53656640a8307f3 /editor/editor_dock_manager.cpp | |
parent | 313f623b9d102cc8c411ae7cab9518f98c2f87f2 (diff) | |
download | redot-engine-4ad74a5663d1e38f4e95159ec1caa53bae3b8799.tar.gz |
Some editor code cleanup
Diffstat (limited to 'editor/editor_dock_manager.cpp')
-rw-r--r-- | editor/editor_dock_manager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/editor/editor_dock_manager.cpp b/editor/editor_dock_manager.cpp index 0a13377857..dc4c809860 100644 --- a/editor/editor_dock_manager.cpp +++ b/editor/editor_dock_manager.cpp @@ -510,9 +510,7 @@ void EditorDockManager::save_docks_to_config(Ref<ConfigFile> p_layout, const Str Array bottom_docks_dump; for (Control *bdock : bottom_docks) { - Control *dock = bdock; - String name = dock->get_name(); - bottom_docks_dump.push_back(name); + bottom_docks_dump.push_back(bdock->get_name()); } p_layout->set_value(p_section, "dock_bottom", bottom_docks_dump); |