diff options
author | ueuuop8591 <leo4707@gmail.com> | 2025-03-03 15:36:56 +0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-03-03 18:32:49 -0800 |
commit | 29f885377442fa93f574f2b4430cb621c1ad809e (patch) | |
tree | 021f755b523e095ffe1acc0766551b06f2bb4656 /src | |
parent | 3354cdba91ed4e67a00a23c4e556c9672b2b1f45 (diff) | |
download | wix-29f885377442fa93f574f2b4430cb621c1ad809e.tar.gz wix-29f885377442fa93f574f2b4430cb621c1ad809e.tar.bz2 wix-29f885377442fa93f574f2b4430cb621c1ad809e.zip |
Fix icon cannot show in tsakbar when using WixInternalUIBootstrapperApplication
Diffstat (limited to 'src')
-rw-r--r-- | src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | 2 |
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: |