mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
Avoid cursor skipping when entering FPS fraction
This commit is contained in:
@@ -289,7 +289,6 @@ namespace Flowframes
|
|||||||
{
|
{
|
||||||
string[] split = fpsInTbox.Text.Split('/');
|
string[] split = fpsInTbox.Text.Split('/');
|
||||||
Fraction frac = new Fraction(split[0].GetInt(), split[1].GetInt());
|
Fraction frac = new Fraction(split[0].GetInt(), split[1].GetInt());
|
||||||
fpsInTbox.Text = frac.ToString();
|
|
||||||
fpsOutTbox.Text = (frac * interpFactorCombox.GetFloat()).ToString();
|
fpsOutTbox.Text = (frac * interpFactorCombox.GetFloat()).ToString();
|
||||||
|
|
||||||
if (!fpsInTbox.ReadOnly)
|
if (!fpsInTbox.ReadOnly)
|
||||||
|
|||||||
Reference in New Issue
Block a user