This fixes the Profile Icon being present until the user clicks on it. The user can now use the Profile Menu and remove the Profile Icon if they select a profile.
This commit is contained in:
parent
3118fec5e7
commit
ce55143340
|
@ -925,6 +925,10 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (new ProfileConfig().ShowDialog() == DialogResult.OK)
|
if (new ProfileConfig().ShowDialog() == DialogResult.OK)
|
||||||
{
|
{
|
||||||
GlobalWin.OSD.AddMessage("Profile settings saved");
|
GlobalWin.OSD.AddMessage("Profile settings saved");
|
||||||
|
//We hide the FirstBoot items since the user setup a Profile
|
||||||
|
//Is it a bad thing to do this constantly?
|
||||||
|
Global.Config.FirstBoot = false;
|
||||||
|
ProfileFirstBootLabel.Visible = false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue