This commit is contained in:
Assistant 2020-03-03 14:17:56 -07:00
parent b7831df8e8
commit b7bc73a1ff

View file

@ -110,7 +110,14 @@ namespace ModAssistant
{
if (string.IsNullOrEmpty(savedTheme))
{
Themes.ApplyWindowsTheme();
try
{
Themes.ApplyWindowsTheme();
}
catch
{
Themes.ApplyTheme("Light", false);
}
return;
}