diff --git a/Code/Main/Interpolate.cs b/Code/Main/Interpolate.cs index d1b7290..57725b5 100644 --- a/Code/Main/Interpolate.cs +++ b/Code/Main/Interpolate.cs @@ -70,7 +70,10 @@ namespace Flowframes Program.mainForm.SetWorking(false); Logger.Log("Total processing time: " + FormatUtils.Time(sw.Elapsed)); sw.Stop(); - OSUtils.ShowNotificationIfInBackground("Flowframes", $"Finished interpolation after {FormatUtils.Time(sw.Elapsed)}."); + + if(!BatchProcessing.busy) + OSUtils.ShowNotificationIfInBackground("Flowframes", $"Finished interpolation after {FormatUtils.Time(sw.Elapsed)}."); + Program.mainForm.InterpolationDone(); }