Remove SEE_MASK_FLAG_NO_UI for better Windows 10 compatibility.

This commit is contained in:
Pale Moon
2018-05-10 11:43:54 +02:00
committed by Roy Tam
parent d3b4f4968c
commit a1498cbb92
+1 -2
View File
@@ -244,8 +244,7 @@ nsMIMEInfoWin::LoadUriInternal(nsIURI * aURL)
SHELLEXECUTEINFOW sinfo;
memset(&sinfo, 0, sizeof(sinfo));
sinfo.cbSize = sizeof(sinfo);
sinfo.fMask = SEE_MASK_FLAG_DDEWAIT |
SEE_MASK_FLAG_NO_UI;
sinfo.fMask = SEE_MASK_FLAG_DDEWAIT;
sinfo.hwnd = nullptr;
sinfo.lpVerb = (LPWSTR)&cmdVerb;
sinfo.nShow = SW_SHOWNORMAL;