itoolform remove spurious restart calls
This commit is contained in:
parent
94be779707
commit
1504f8d441
|
@ -490,7 +490,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (p.X >= 0 && p.Y >= 0)
|
if (p.X >= 0 && p.Y >= 0)
|
||||||
Location = p;
|
Location = p;
|
||||||
}
|
}
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#region refresh
|
#region refresh
|
||||||
|
|
|
@ -719,7 +719,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void GBAGPUView_Load(object sender, EventArgs e)
|
private void GBAGPUView_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ShowSelectedWidget()
|
void ShowSelectedWidget()
|
||||||
|
|
|
@ -261,8 +261,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
Location = Global.Config.GenVdpSettings.WindowPosition;
|
Location = Global.Config.GenVdpSettings.WindowPosition;
|
||||||
}
|
}
|
||||||
|
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,8 +80,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
AddressLabel.Font = font;
|
AddressLabel.Font = font;
|
||||||
|
|
||||||
TopMost = Global.Config.HexEditorSettings.TopMost;
|
TopMost = Global.Config.HexEditorSettings.TopMost;
|
||||||
|
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private int? HighlightedAddress
|
private int? HighlightedAddress
|
||||||
|
@ -446,8 +444,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void HexEditor_Load(object sender, EventArgs e)
|
private void HexEditor_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Restart();
|
|
||||||
|
|
||||||
_defaultWidth = Size.Width; // Save these first so that the user can restore to its original size
|
_defaultWidth = Size.Width; // Save these first so that the user can restore to its original size
|
||||||
_defaultHeight = Size.Height;
|
_defaultHeight = Size.Height;
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public BarcodeEntry()
|
public BarcodeEntry()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#region IToolForm
|
#region IToolForm
|
||||||
|
|
|
@ -269,8 +269,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
Location = Global.Config.PceVdpSettings.WindowPosition;
|
Location = Global.Config.PceVdpSettings.WindowPosition;
|
||||||
}
|
}
|
||||||
|
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RefreshFloatingWindowControl()
|
private void RefreshFloatingWindowControl()
|
||||||
|
|
|
@ -253,8 +253,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
Location = Global.Config.SmsVdpSettings.WindowPosition;
|
Location = Global.Config.SmsVdpSettings.WindowPosition;
|
||||||
}
|
}
|
||||||
|
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AutoloadMenuItem_Click(object sender, EventArgs e)
|
private void AutoloadMenuItem_Click(object sender, EventArgs e)
|
||||||
|
|
|
@ -82,7 +82,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
LoggingEnabled.Checked = true;
|
LoggingEnabled.Checked = true;
|
||||||
Tracer.Enabled = true;
|
Tracer.Enabled = true;
|
||||||
SetTracerBoxTitle();
|
SetTracerBoxTitle();
|
||||||
Restart();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateValues()
|
public void UpdateValues()
|
||||||
|
|
Loading…
Reference in New Issue