From 0fc3ac21052aac6f5fb8948df723219563cf0825 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 25 Jul 2020 08:30:15 +1000 Subject: [PATCH] Don't need this anymore no idea when that happened sorry --- src/BizHawk.Client.EmuHawk/MainForm.Events.cs | 12 +----------- src/BizHawk.Client.EmuHawk/tools/ToolManager.cs | 10 +--------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs index 7076b86071..4ce48fb6c0 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -1207,17 +1207,7 @@ namespace BizHawk.Client.EmuHawk Tools.LoadRamWatch(true); } - private void RamSearchMenuItem_Click(object sender, EventArgs e) - { - var ramSearch = Tools.Load(); - if (OSTailoredCode.IsUnixHost) - { - // this is apparently needed for weird mono-forms-on-different-thread issues - // don't do .Show() within Load() 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(); private void LuaConsoleMenuItem_Click(object sender, EventArgs e) { diff --git a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs index 8680bf4f0c..9e0529e3e6 100644 --- a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs +++ b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs @@ -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; }