Frame counting is reliable now

This commit is contained in:
n00mkrad
2022-07-20 21:48:30 +02:00
parent 48c8893da7
commit dce0e827ab
7 changed files with 44 additions and 50 deletions

View File

@@ -19,6 +19,7 @@ namespace Flowframes.Ui
{
public static async Task InitInput (TextBox outputTbox, TextBox inputTbox, TextBox fpsInTbox, bool start = false)
{
Program.mainForm.SetTab("interpolate");
Program.mainForm.ResetInputInfo();
string path = inputTbox.Text.Trim();

View File

@@ -85,6 +85,12 @@ namespace Flowframes.Ui
{
Logger.Log($"MessageBox: {text} ({type}){(BatchProcessing.busy ? "[Batch Mode - Will not display messagebox]" : "")}", true);
if (BatchProcessing.busy)
{
Logger.Log(text);
return new DialogResult();
}
if (BatchProcessing.busy)
return new DialogResult();