From 0957b1de8f890f9d2d17133778e8a7a34dabefe8 Mon Sep 17 00:00:00 2001 From: n00mkrad Date: Fri, 20 Aug 2021 13:49:43 +0200 Subject: [PATCH] Notifications during queue processing only show once queue is done, not per video --- Code/Main/Interpolate.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(); }