remove TopMost from commondialogs (OpenFileDialog, etc.). Fixes #2182 but it is unclear what this was intended to fix in the first place. please gather more information

This commit is contained in:
zeromus 2020-07-01 14:17:36 -04:00
parent edc31793cf
commit ffabb48f07
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ namespace BizHawk.Client.EmuHawk
public static DialogResult ShowHawkDialog(this CommonDialog form)
{
GlobalWin.Sound.StopSound();
using var tempForm = new Form { TopMost = true };
using var tempForm = new Form();
var result = form.ShowDialog(tempForm);
GlobalWin.Sound.StartSound();
return result;