Allow custom input FPS if FPS wasn't detected (or when using img input)

This commit is contained in:
N00MKRAD
2021-02-27 14:59:50 +01:00
parent b9688b90d3
commit 17a4bca660
2 changed files with 3 additions and 1 deletions

View File

@@ -45,7 +45,7 @@ namespace Flowframes.UI
fpsStr = fps.ToString();
Logger.Log($"Video FPS: {fpsStr} - Total Number Of Frames: {frameCount}", false, true);
Program.mainForm.GetInputFpsTextbox().ReadOnly = fps > 0;
Program.mainForm.currInFps = fps;
Program.mainForm.currInFrames = frameCount;
Program.mainForm.UpdateInputInfo();