diff --git a/BizHawk.MultiClient/RamWatch.Designer.cs b/BizHawk.MultiClient/RamWatch.Designer.cs index 2928118692..39b166ff19 100644 --- a/BizHawk.MultiClient/RamWatch.Designer.cs +++ b/BizHawk.MultiClient/RamWatch.Designer.cs @@ -334,6 +334,7 @@ this.Controls.Add(this.menuStrip1); this.MainMenuStrip = this.menuStrip1; this.Name = "RamWatch"; + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "Ram Watch"; this.Load += new System.EventHandler(this.RamWatch_Load); this.LocationChanged += new System.EventHandler(this.RamWatch_LocationChanged); diff --git a/BizHawk.MultiClient/RamWatch.cs b/BizHawk.MultiClient/RamWatch.cs index f25b7464a4..81902ecc17 100644 --- a/BizHawk.MultiClient/RamWatch.cs +++ b/BizHawk.MultiClient/RamWatch.cs @@ -18,6 +18,8 @@ namespace BizHawk.MultiClient //Keep track of changes to watch list in order to prompt the user to save changes, also use this to enable/disable things like quick save //implement separator feature //Display address as hex + //Since window is resizable, save window size + //Fix window position setting, shoudl it be set in a specific event? List watchList = new List(); string currentWatchFile = ""; @@ -306,12 +308,7 @@ namespace BizHawk.MultiClient private void RamWatch_Load(object sender, EventArgs e) { if (Global.Config.RamWatchWndx >= 0 && Global.Config.RamWatchWndy >= 0) - { - this.Left = Global.Config.RamWatchWndx; - this.Top = Global.Config.RamWatchWndy; - } - //this.Location = new Point(Global.Config.RamWatchWndx, Global.Config.RamWatchWndy); - + this.Location = new Point(Global.Config.RamWatchWndx, Global.Config.RamWatchWndy); } private void filesToolStripMenuItem_DropDownOpened(object sender, EventArgs e)