mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-30 13:51:53 +08:00
fix: sometimes tags did not update after deleting selected tag (#908)
This commit is contained in:
@@ -771,6 +771,19 @@ namespace SourceGit.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
public void MarkTagsDirtyManually()
|
||||
{
|
||||
if (_watcher == null)
|
||||
{
|
||||
Task.Run(RefreshTags);
|
||||
Task.Run(RefreshCommits);
|
||||
}
|
||||
else
|
||||
{
|
||||
_watcher.MarkTagDirtyManually();
|
||||
}
|
||||
}
|
||||
|
||||
public void MarkWorkingCopyDirtyManually()
|
||||
{
|
||||
if (_watcher == null)
|
||||
|
||||
Reference in New Issue
Block a user