Added First Boot Profile Dialog to Main Status Bar
This commit is contained in:
parent
e1d3d33307
commit
3797fc6fd8
|
@ -93,6 +93,7 @@ namespace BizHawk.Client.Common
|
||||||
public bool SupressAskSave = false;
|
public bool SupressAskSave = false;
|
||||||
public bool AVI_CaptureOSD = false;
|
public bool AVI_CaptureOSD = false;
|
||||||
public bool Screenshot_CaptureOSD = false;
|
public bool Screenshot_CaptureOSD = false;
|
||||||
|
public bool FirstBoot = true;
|
||||||
|
|
||||||
public enum SaveStateTypeE { Default, Binary, Text };
|
public enum SaveStateTypeE { Default, Binary, Text };
|
||||||
public SaveStateTypeE SaveStateType = SaveStateTypeE.Default;
|
public SaveStateTypeE SaveStateType = SaveStateTypeE.Default;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -54,6 +54,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
StatusBarDiskLightOnImage = Properties.Resources.LightOn;
|
StatusBarDiskLightOnImage = Properties.Resources.LightOn;
|
||||||
StatusBarDiskLightOffImage = Properties.Resources.LightOff;
|
StatusBarDiskLightOffImage = Properties.Resources.LightOff;
|
||||||
UpdateCoreStatusBarButton();
|
UpdateCoreStatusBarButton();
|
||||||
|
if (Global.Config.FirstBoot == true)
|
||||||
|
{
|
||||||
|
ProfileFirstBootLabel.Visible = true;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static MainForm()
|
static MainForm()
|
||||||
|
@ -3285,6 +3290,13 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ProfileFirstBootLabel_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var profileForm = new ProfileConfig();
|
||||||
|
profileForm.ShowDialog();
|
||||||
|
Global.Config.FirstBoot = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue