From ffabb48f0725e41fd1912229f3dbbd1e2fa16eb2 Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 1 Jul 2020 14:17:36 -0400 Subject: [PATCH] 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 --- src/BizHawk.Client.EmuHawk/Extensions/ControlExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/Extensions/ControlExtensions.cs b/src/BizHawk.Client.EmuHawk/Extensions/ControlExtensions.cs index 60938f3ce4..af4c2813b4 100644 --- a/src/BizHawk.Client.EmuHawk/Extensions/ControlExtensions.cs +++ b/src/BizHawk.Client.EmuHawk/Extensions/ControlExtensions.cs @@ -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;