aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
index 23db7c5f..270ce40c 100644
--- a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
+++ b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
@@ -578,7 +578,7 @@ private:
578 dwWindowStyle |= WS_VISIBLE; 578 dwWindowStyle |= WS_VISIBLE;
579 } 579 }
580 580
581 m_hWnd = ::CreateWindowExW(WS_EX_TOOLWINDOW, wc.lpszClassName, NULL, dwWindowStyle, 0, 0, 0, 0, HWND_DESKTOP, NULL, m_hModule, this); 581 m_hWnd = ::CreateWindowExW(WS_EX_APPWINDOW, wc.lpszClassName, NULL, dwWindowStyle, 0, 0, 0, 0, HWND_DESKTOP, NULL, m_hModule, this);
582 ExitOnNullWithLastError(m_hWnd, hr, "Failed to create internal UI main window."); 582 ExitOnNullWithLastError(m_hWnd, hr, "Failed to create internal UI main window.");
583 583
584 LExit: 584 LExit: