diff --git a/CodeLegacy/Main/Interpolate.cs b/CodeLegacy/Main/Interpolate.cs index 3472602..f4fd1a6 100644 --- a/CodeLegacy/Main/Interpolate.cs +++ b/CodeLegacy/Main/Interpolate.cs @@ -305,7 +305,10 @@ namespace Flowframes Application.Exit(); if (!string.IsNullOrWhiteSpace(reason) && !noMsgBox) - UiUtils.ShowMessageBox($"Canceled:\n\n{reason}"); + { + bool err = reason.Lower().Contains("error"); + UiUtils.ShowMessageBox($"Canceled:\n\n{reason}", type: err ? UiUtils.MessageType.Error : UiUtils.MessageType.Message, monospace: err); + } } public static async Task Cleanup(bool ignoreKeepSetting = false, int retriesLeft = 3, bool isRetry = false)