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)
|
||||
Location = p;
|
||||
}
|
||||
Restart();
|
||||
}
|
||||
|
||||
#region refresh
|
||||
|
|
|
@ -719,7 +719,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void GBAGPUView_Load(object sender, EventArgs e)
|
||||
{
|
||||
Restart();
|
||||
}
|
||||
|
||||
void ShowSelectedWidget()
|
||||
|
|
|
@ -261,8 +261,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
Location = Global.Config.GenVdpSettings.WindowPosition;
|
||||
}
|
||||
|
||||
Restart();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,8 +80,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
AddressLabel.Font = font;
|
||||
|
||||
TopMost = Global.Config.HexEditorSettings.TopMost;
|
||||
|
||||
Restart();
|
||||
}
|
||||
|
||||
private int? HighlightedAddress
|
||||
|
@ -446,8 +444,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
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
|
||||
_defaultHeight = Size.Height;
|
||||
|
||||
|
|
|
@ -20,8 +20,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
public BarcodeEntry()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
Restart();
|
||||
}
|
||||
|
||||
#region IToolForm
|
||||
|
|
|
@ -269,8 +269,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
Location = Global.Config.PceVdpSettings.WindowPosition;
|
||||
}
|
||||
|
||||
Restart();
|
||||
}
|
||||
|
||||
private void RefreshFloatingWindowControl()
|
||||
|
|
|
@ -253,8 +253,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
Location = Global.Config.SmsVdpSettings.WindowPosition;
|
||||
}
|
||||
|
||||
Restart();
|
||||
}
|
||||
|
||||
private void AutoloadMenuItem_Click(object sender, EventArgs e)
|
||||
|
|
|
@ -82,7 +82,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
LoggingEnabled.Checked = true;
|
||||
Tracer.Enabled = true;
|
||||
SetTracerBoxTitle();
|
||||
Restart();
|
||||
}
|
||||
|
||||
public void UpdateValues()
|
||||
|
|
Loading…
Reference in New Issue