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

View file

@ -109,8 +109,15 @@ namespace ModAssistant
public static void FirstLoad(string savedTheme)
{
if (string.IsNullOrEmpty(savedTheme))
{
try
{
Themes.ApplyWindowsTheme();
}
catch
{
Themes.ApplyTheme("Light", false);
}
return;
}