style<Reset>: mode option style

This commit is contained in:
leo 2021-08-06 11:56:50 +08:00
parent b187fa1b3a
commit d52fc37b65
2 changed files with 12 additions and 6 deletions

View file

@ -13,7 +13,7 @@ namespace SourceGit.Models {
public static List<ResetMode> Supported = new List<ResetMode>() {
new ResetMode("Soft", "Keep all changes. Stage differences", "--soft", Brushes.Green),
new ResetMode("Mixed", "Keep all changes. Unstage differences", "--mixed", Brushes.Yellow),
new ResetMode("Mixed", "Keep all changes. Unstage differences", "--mixed", Brushes.Orange),
new ResetMode("Hard", "Discard all changes", "--hard", Brushes.Red),
};