style: Blame & FileHistories window style

This commit is contained in:
leo 2024-03-15 10:41:36 +08:00
parent abc3e8e9f7
commit f93dec5e6a
3 changed files with 19 additions and 15 deletions

View file

@ -26,7 +26,7 @@ namespace SourceGit.ViewModels {
public Blame(string repo, string file, string revision) {
_repo = repo;
Title = $"{file}@{revision.Substring(0, 10)}";
Title = $"{file} @ {revision.Substring(0, 10)}";
Task.Run(() => {
var result = new Commands.Blame(repo, file, revision).Result();
Dispatcher.UIThread.Invoke(() => {