muffin v7.4.7

This commit is contained in:
alydev 2025-12-28 12:35:39 +10:00
parent 1cc65e495d
commit 63f975ff4f
16 changed files with 1659 additions and 939 deletions

View file

@ -215,6 +215,10 @@ internal abstract class MiniTaskController<T> : IDisposable
public void OnErrorToast(ref SeString message, ref bool isHandled)
{
if (_taskQueue.AllTasksComplete)
{
return;
}
if (_taskQueue.CurrentTaskExecutor is IToastAware toastAware && toastAware.OnErrorToast(message))
{
isHandled = true;