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:
hegyak 2014-10-16 03:18:38 +00:00
parent 3118fec5e7
commit ce55143340
1 changed files with 4 additions and 0 deletions

View File

@ -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
{ {