Skip to content

Commit

Permalink
Merge pull request #79971 from Calinou/editor-filesystem-dock-expand-…
Browse files Browse the repository at this point in the history
…favorites

Uncollapse favorites by default in the editor FileSystem dock
  • Loading branch information
akien-mga committed Aug 7, 2023
2 parents 75976a2 + 075bd4b commit 5413b18
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5006,12 +5006,17 @@ void EditorNode::_load_editor_layout() {
config.instantiate();
Error err = config->load(EditorPaths::get_singleton()->get_project_settings_dir().path_join("editor_layout.cfg"));
if (err != OK) { // No config.
// If config is not found, expand the res:// folder by default.
// If config is not found, expand the res:// folder and favorites by default.
TreeItem *root = FileSystemDock::get_singleton()->get_tree_control()->get_item_with_metadata("res://", 0);
if (root) {
root->set_collapsed(false);
}

TreeItem *favorites = FileSystemDock::get_singleton()->get_tree_control()->get_item_with_metadata("Favorites", 0);
if (favorites) {
favorites->set_collapsed(false);
}

if (overridden_default_layout >= 0) {
_layout_menu_option(overridden_default_layout);
}
Expand Down

0 comments on commit 5413b18

Please sign in to comment.