Skip to content

Commit

Permalink
Fix icon cannot show in tsakbar when using WixInternalUIBootstrapperA…
Browse files Browse the repository at this point in the history
…pplication
  • Loading branch information
leo4707 authored and robmen committed Mar 4, 2025
1 parent 3354cdb commit 29f8853
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ class CWixInternalUIBootstrapperApplication : public CBootstrapperApplicationBas
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:
Expand Down

0 comments on commit 29f8853

Please sign in to comment.