Notifications during queue processing only show once queue is done, not per video

This commit is contained in:
n00mkrad
2021-08-20 13:49:43 +02:00
parent f6ebe00d0a
commit 0957b1de8f

View File

@@ -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();
}