Add CurrentOS check paired with the one in MainForm.Events.cs

This commit is contained in:
James Groom 2019-05-20 23:32:46 +10:00 committed by GitHub
parent ddbe3c7942
commit d11e35dc44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -159,7 +159,15 @@ namespace BizHawk.Client.EmuHawk
}
newTool.Restart();
newTool.Show();
if (OSTailoredCode.CurrentOS != OSTailoredCode.DistinctOS.Windows
&& newTool is RamSearch)
{
// the mono winforms implementation is buggy, skip to the return statement and call Show in MainForm instead
}
else
{
newTool.Show();
}
return (T)newTool;
}