itoolform remove spurious restart calls

This commit is contained in:
goyuken 2014-12-17 03:35:57 +00:00
parent 94be779707
commit 1504f8d441
8 changed files with 0 additions and 15 deletions

View File

@ -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

View File

@ -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()

View File

@ -261,8 +261,6 @@ namespace BizHawk.Client.EmuHawk
{ {
Location = Global.Config.GenVdpSettings.WindowPosition; Location = Global.Config.GenVdpSettings.WindowPosition;
} }
Restart();
} }
} }
} }

View File

@ -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;

View File

@ -20,8 +20,6 @@ namespace BizHawk.Client.EmuHawk
public BarcodeEntry() public BarcodeEntry()
{ {
InitializeComponent(); InitializeComponent();
Restart();
} }
#region IToolForm #region IToolForm

View File

@ -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()

View File

@ -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)

View File

@ -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()