From ce55143340a78e0aa23f7b8382c575c98d33cc59 Mon Sep 17 00:00:00 2001 From: hegyak Date: Thu, 16 Oct 2014 03:18:38 +0000 Subject: [PATCH] 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. --- BizHawk.Client.EmuHawk/MainForm.Events.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Client.EmuHawk/MainForm.Events.cs b/BizHawk.Client.EmuHawk/MainForm.Events.cs index 0f0fa1434c..7abbf8ec08 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -925,6 +925,10 @@ namespace BizHawk.Client.EmuHawk if (new ProfileConfig().ShowDialog() == DialogResult.OK) { 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 {