🤦 Remove references to system_color

This commit is contained in:
Nate Butler 2023-10-23 11:05:17 -04:00
parent dd55ccef34
commit 3a326bfa7e
7 changed files with 8 additions and 17 deletions

View file

@ -61,10 +61,9 @@ impl GitStatus {
pub fn hsla(&self, cx: &WindowContext) -> Hsla {
let color = ThemeColor::new(cx);
let system_color = SystemColor::new();
match self {
Self::None => system_color.transparent,
Self::None => color.transparent,
Self::Created => color.git_created,
Self::Modified => color.git_modified,
Self::Deleted => color.git_deleted,