Do not push invisible local worktrees into recent documents (#10112)

Follow-up of https://github.com/zed-industries/zed/pull/9919 that
removes invisible worktrees from the list, to avoid things like

![image](https://github.com/zed-industries/zed/assets/2690773/90ce1c29-a1dd-4a03-b09a-effdba620c8f)

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2024-04-03 12:47:01 +02:00 committed by GitHub
parent 9aad30a559
commit 58aec1de75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6853,10 +6853,12 @@ impl Project {
project
.update(&mut cx, |project, cx| project.add_worktree(&worktree, cx))?;
cx.update(|cx| {
cx.add_recent_document(&path);
})
.log_err();
if visible {
cx.update(|cx| {
cx.add_recent_document(&path);
})
.log_err();
}
Ok(worktree)
}