some subtle touches
This commit is contained in:
parent
3007b50be0
commit
ecb0daf30d
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue