some subtle touches

This commit is contained in:
Bitl 2020-07-20 18:10:54 -07:00
parent 3007b50be0
commit ecb0daf30d
2 changed files with 24 additions and 0 deletions

View File

@ -587,6 +587,18 @@ namespace NovetusLauncher
ReadClientValues();
}
GlobalFuncs.UpdateRichPresence(GlobalVars.LauncherState.InLauncher, "");
FormCollection fc = Application.OpenForms;
foreach (Form frm in fc)
{
//iterate through
if (frm.Name == "CustomGraphicsOptions")
{
frm.Close();
break;
}
}
}
void CheckBox3CheckedChanged(object sender, EventArgs e)

View File

@ -660,6 +660,18 @@ namespace NovetusLauncher
ReadClientValues();
}
GlobalFuncs.UpdateRichPresence(GlobalVars.LauncherState.InLauncher, "");
FormCollection fc = Application.OpenForms;
foreach (Form frm in fc)
{
//iterate through
if (frm.Name == "CustomGraphicsOptions")
{
frm.Close();
break;
}
}
}
void CheckBox3CheckedChanged(object sender, EventArgs e)