Show selected directory in split mode when selecting a file
This commit is contained in:
parent
22782d519c
commit
4fb56d6694
1 changed files with 5 additions and 0 deletions
|
@ -124,6 +124,11 @@ bool FileSystemDock::_create_tree(TreeItem *p_parent, EditorFileSystemDirectory
|
|||
udata.push_back(file_item);
|
||||
EditorResourcePreview::get_singleton()->queue_resource_preview(file_metadata, this, "_tree_thumbnail_done", udata);
|
||||
}
|
||||
} else if (display_mode == DISPLAY_MODE_SPLIT) {
|
||||
if (lpath.get_base_dir() == path.get_base_dir()) {
|
||||
subdirectory_item->select(0);
|
||||
subdirectory_item->set_as_cursor(0);
|
||||
}
|
||||
}
|
||||
|
||||
if (searched_string.length() > 0) {
|
||||
|
|
Loading…
Reference in a new issue