diff --git a/Code/Main/InterpolateUtils.cs b/Code/Main/InterpolateUtils.cs index 2f8f86c..d249fd3 100644 --- a/Code/Main/InterpolateUtils.cs +++ b/Code/Main/InterpolateUtils.cs @@ -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);