Update InterpolateUtils.cs

This commit is contained in:
n00mkrad
2023-02-20 16:00:27 +01:00
parent d3fe53e554
commit c112f0516d

View File

@@ -366,7 +366,7 @@ namespace Flowframes.Main
public static Fraction AskForFramerate (string mediaName, bool isImageSequence = true)
{
string text = $"Please enter a frame rate to use for{(isImageSequence ? " the image sequence" : "")} '{mediaName.Trunc(80)}'.";
string text = $"Please enter an input frame rate to use for{(isImageSequence ? " the image sequence" : "")} '{mediaName.Trunc(80)}'.";
PromptForm form = new PromptForm("Enter Frame Rate", text, "15");
form.ShowDialog();
return new Fraction(form.EnteredText);