Avoid cursor skipping when entering FPS fraction

This commit is contained in:
N00MKRAD
2021-04-11 17:14:37 +02:00
parent 84b2125681
commit 600abfd964

View File

@@ -289,7 +289,6 @@ namespace Flowframes
{
string[] split = fpsInTbox.Text.Split('/');
Fraction frac = new Fraction(split[0].GetInt(), split[1].GetInt());
fpsInTbox.Text = frac.ToString();
fpsOutTbox.Text = (frac * interpFactorCombox.GetFloat()).ToString();
if (!fpsInTbox.ReadOnly)