File import splash, disable input file drive check by default

This commit is contained in:
N00MKRAD
2024-10-16 13:50:26 +02:00
parent 3a13e975fd
commit a521f9cfbb
5 changed files with 21 additions and 7 deletions

View File

@@ -46,7 +46,6 @@ namespace Flowframes
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var splash = new SplashForm("Starting Flowframes...");
splash.Show();
// Force culture to en-US across entire application (to avoid number parsing issues etc)
var culture = new CultureInfo("en-US");
@@ -61,8 +60,8 @@ namespace Flowframes
Paths.Init();
Config.Init();
Task.Run(() => DiskSpaceCheckLoop());
Logger.Log($"Command Line: {Environment.CommandLine}", true);
Task.Run(() => DiskSpaceCheckLoop());
LaunchGui();
}