mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
Match priority of folder highlights to vscode
This commit is contained in:
parent
41bef2e444
commit
62c445da57
1 changed files with 3 additions and 3 deletions
|
@ -195,10 +195,10 @@ impl RepositoryEntry {
|
|||
(GitFileStatus::Conflict, _) | (_, GitFileStatus::Conflict) => {
|
||||
&GitFileStatus::Conflict
|
||||
}
|
||||
(GitFileStatus::Added, _) | (_, GitFileStatus::Added) => {
|
||||
&GitFileStatus::Added
|
||||
(GitFileStatus::Modified, _) | (_, GitFileStatus::Modified) => {
|
||||
&GitFileStatus::Modified
|
||||
}
|
||||
_ => &GitFileStatus::Modified,
|
||||
_ => &GitFileStatus::Added,
|
||||
},
|
||||
)
|
||||
.copied()
|
||||
|
|
Loading…
Reference in a new issue