Fix UI management flow issue.

This commit is contained in:
Namhyeon Go 2025-05-24 12:39:58 +09:00
parent 4deddfd8c9
commit f1a6ef4435

View File

@ -109,10 +109,10 @@ namespace WelsonJS.Launcher
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
string filePath = openFileDialog.FileName;
DisableUI();
Task.Run(() => ExtractAndRun(filePath));
}
DisableUI();
}
}