enhance: change the default reset mode to --mixed which is the default action in git commandline (#551)

This commit is contained in:
leo 2024-10-10 09:17:31 +08:00
parent 14334b08d2
commit ac74e4ba32
No known key found for this signature in database

View file

@ -27,7 +27,7 @@ namespace SourceGit.ViewModels
_repo = repo;
Current = current;
To = to;
SelectedMode = Models.ResetMode.Supported[0];
SelectedMode = Models.ResetMode.Supported[1];
View = new Views.Reset() { DataContext = this };
}