refactoring

This commit is contained in:
Manuel Kamper 2019-03-30 13:03:33 +01:00
parent f84263bb26
commit 3c62f0bd9e
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ namespace Mk0.Software.ImageSorter
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
SingleApplication.Run(args.Length == 0 ? new Main(string.Empty) : new Main(args[0]), Mk0.Software.ImageSorter.Properties.Settings.Default.singleInstance);
SingleApplication.Run(args.Length == 0 ? new Main(string.Empty) : new Main(args[0]), Properties.Settings.Default.singleInstance);
}
}
}