feat: Add commit Tooltip in Blame (#1055)

Fixes #993
This commit is contained in:
GadflyFang 2025-03-05 09:36:32 +08:00 committed by GitHub
parent 5e898a809e
commit 269903503f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 62 additions and 15 deletions

View file

@ -57,6 +57,11 @@ namespace SourceGit.ViewModels
}
}
public Models.Commit GetCommitInfo(string commitSHA)
{
return new Commands.QuerySingleCommit(_repo, commitSHA).Result();
}
private readonly string _repo;
private Models.BlameData _data = null;
}