parent
b0c76f28ca
commit
0fc3ac2105
|
@ -1207,17 +1207,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
Tools.LoadRamWatch(true);
|
||||
}
|
||||
|
||||
private void RamSearchMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var ramSearch = Tools.Load<RamSearch>();
|
||||
if (OSTailoredCode.IsUnixHost)
|
||||
{
|
||||
// this is apparently needed for weird mono-forms-on-different-thread issues
|
||||
// don't do .Show() within Load<T>() for RamSearch - instead put an instance of it here on MainForm, then show here
|
||||
// the mono winforms implementation is.... weird and buggy
|
||||
ramSearch.Show();
|
||||
}
|
||||
}
|
||||
private void RamSearchMenuItem_Click(object sender, EventArgs e) => Tools.Load<RamSearch>();
|
||||
|
||||
private void LuaConsoleMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
|
|
@ -9,7 +9,6 @@ using System.ComponentModel;
|
|||
using System.Windows.Forms;
|
||||
|
||||
using BizHawk.Client.Common;
|
||||
using BizHawk.Common;
|
||||
using BizHawk.Common.ReflectionExtensions;
|
||||
using BizHawk.Emulation.Common;
|
||||
using BizHawk.WinForms.Controls;
|
||||
|
@ -153,14 +152,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
newTool.Restart();
|
||||
if (OSTailoredCode.IsUnixHost && newTool is RamSearch)
|
||||
{
|
||||
// the mono winforms implementation is buggy, skip to the return statement and call Show in MainForm instead
|
||||
}
|
||||
else
|
||||
{
|
||||
newTool.Show();
|
||||
}
|
||||
newTool.Show();
|
||||
return (T)newTool;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue