Improved path char check, fixed SBS GUI

This commit is contained in:
N00MKRAD
2021-02-01 22:06:50 +01:00
parent f11611f32e
commit dd79c5a2a8
6 changed files with 15 additions and 16 deletions

View File

@@ -20,12 +20,13 @@ namespace Flowframes.UI
{
Program.mainForm.SetTab("interpolate");
Program.mainForm.ResetInputInfo();
string path = inputTbox.Text.Trim();
InterpolateUtils.PathAsciiCheck(path, "input path");
if (Config.GetBool("clearLogOnInput"))
Logger.ClearLogBox();
outputTbox.Text = inputTbox.Text.Trim().GetParentDir();
string path = inputTbox.Text.Trim();
Program.lastInputPath = path;
Program.lastInputPathIsSsd = OSUtils.DriveIsSSD(path);