Toolbox - reload icons on rom open/close so that core dependent tools update.
This commit is contained in:
parent
c871eedbbc
commit
d6a57e08c1
|
@ -1134,8 +1134,9 @@ namespace BizHawk.MultiClient
|
|||
NESDebug1.Restart();
|
||||
TI83KeyPad1.Restart();
|
||||
TAStudio1.Restart();
|
||||
|
||||
Cheats1.Restart();
|
||||
ToolBox1.Restart();
|
||||
|
||||
if (Global.Config.LoadCheatFileByGame)
|
||||
{
|
||||
if (Global.CheatList.AttemptLoadCheatFile())
|
||||
|
@ -2188,6 +2189,7 @@ namespace BizHawk.MultiClient
|
|||
NESDebug1.Restart();
|
||||
TI83KeyPad1.Restart();
|
||||
Cheats1.Restart();
|
||||
ToolBox1.Restart();
|
||||
Text = "BizHawk" + (INTERIM ? " (interim) " : "");
|
||||
HandlePlatformMenus();
|
||||
StateSlots.Clear();
|
||||
|
|
|
@ -24,7 +24,16 @@ namespace BizHawk.MultiClient
|
|||
int x = Global.MainForm.Location.X + Global.MainForm.Size.Width;
|
||||
int y = Global.MainForm.Location.Y;
|
||||
Location = new Point(x, y);
|
||||
HideShowIcons();
|
||||
}
|
||||
|
||||
public void Restart()
|
||||
{
|
||||
HideShowIcons();
|
||||
}
|
||||
|
||||
private void HideShowIcons()
|
||||
{
|
||||
if (Global.Emulator is NES)
|
||||
{
|
||||
NESPPU.Visible = true;
|
||||
|
|
Loading…
Reference in New Issue