Use a different color for ignored files in the project panel

This commit is contained in:
Max Brunsfeld 2024-01-23 13:00:28 -08:00
parent 035bd79ae1
commit 4e970e978a

View file

@ -1352,6 +1352,8 @@ impl ProjectPanel {
})
.unwrap_or(if is_selected {
Color::Default
} else if details.is_ignored {
Color::Disabled
} else {
Color::Muted
});