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:
parent
edc31793cf
commit
ffabb48f07
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue