mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
style<ChangeStatusIcon>: use ★ instead of ? for untracked files
This commit is contained in:
parent
db9d8c8e99
commit
2f02b23b51
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ namespace SourceGit.Views.Controls {
|
||||||
case Models.Change.Status.Renamed: return "➔";
|
case Models.Change.Status.Renamed: return "➔";
|
||||||
case Models.Change.Status.Copied: return "❏";
|
case Models.Change.Status.Copied: return "❏";
|
||||||
case Models.Change.Status.Unmerged: return "∪";
|
case Models.Change.Status.Unmerged: return "∪";
|
||||||
case Models.Change.Status.Untracked: return "?";
|
case Models.Change.Status.Untracked: return "★";
|
||||||
default: return "?";
|
default: return "?";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue