From 29f885377442fa93f574f2b4430cb621c1ad809e Mon Sep 17 00:00:00 2001 From: ueuuop8591 Date: Mon, 3 Mar 2025 15:36:56 +0800 Subject: Fix icon cannot show in tsakbar when using WixInternalUIBootstrapperApplication --- src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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: dwWindowStyle |= WS_VISIBLE; } - m_hWnd = ::CreateWindowExW(WS_EX_TOOLWINDOW, wc.lpszClassName, NULL, dwWindowStyle, 0, 0, 0, 0, HWND_DESKTOP, NULL, m_hModule, this); + m_hWnd = ::CreateWindowExW(WS_EX_APPWINDOW, wc.lpszClassName, NULL, dwWindowStyle, 0, 0, 0, 0, HWND_DESKTOP, NULL, m_hModule, this); ExitOnNullWithLastError(m_hWnd, hr, "Failed to create internal UI main window."); LExit: -- cgit v1.2.3-55-g6feb