enhance: notification popup

This commit is contained in:
leo 2024-12-13 10:06:28 +08:00
parent 6eb226eb44
commit 02658839c2
No known key found for this signature in database
3 changed files with 23 additions and 5 deletions

View file

@ -74,7 +74,11 @@ namespace SourceGit.Commands
}
if (string.IsNullOrEmpty(e.Data))
{
errs.Add(string.Empty);
return;
}
if (TraitErrorAsOutput)
OnReadline(e.Data);
@ -89,6 +93,7 @@ namespace SourceGit.Commands
return;
if (REG_PROGRESS().IsMatch(e.Data))
return;
errs.Add(e.Data);
};