#318 Fix message box not working when ontop is enabled

This commit is contained in:
Frank Skare
2021-09-04 12:39:28 +02:00
parent 0d72731ce7
commit 10e2a2cf3b
6 changed files with 61 additions and 35 deletions

View File

@@ -44,7 +44,7 @@ public class Msg
string msg = title?.ToString().TrimEx();
MessageBoxEx.DetailsText = details;
string windowTitle = System.Windows.Forms.Application.ProductName;
return MessageBoxEx.OpenMessageBox(null, msg, windowTitle, buttons, img);
return MessageBoxEx.OpenMessageBox(msg, windowTitle, buttons, img);
}
ApartmentState state = Thread.CurrentThread.GetApartmentState();