Skip to content

Commit

Permalink
UI: Respect data storage location setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Qxe5 committed Nov 27, 2023
1 parent c0e7d9f commit c8e2c7e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions UI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public static int Main(string[] args)

if(!File.Exists(ConfigManager.GetConfigFile())) {
//Could not find configuration file, show wizard
ExtractNativeDependencies(ConfigManager.HomeFolder);
App.ShowConfigWindow = true;
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args, ShutdownMode.OnMainWindowClose);
if(File.Exists(ConfigManager.GetConfigFile())) {
Expand All @@ -68,9 +67,6 @@ public static int Main(string[] args)
//Start loading config file in a separate thread
Task.Run(() => ConfigManager.LoadConfig());

//Extract core dll & other native dependencies
ExtractNativeDependencies(ConfigManager.HomeFolder);

if(CommandLineHelper.IsTestRunner(args)) {
return TestRunner.Run(args);
}
Expand Down

0 comments on commit c8e2c7e

Please sign in to comment.