[win32] Don't make splash top most

pull/3/head
Hleb Valoshka 2019-10-13 23:44:00 +03:00
parent b849e76bf3
commit d63b65f83e
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ SplashWindow::createWindow()
int x = (nScrWidth - winWidth) / 2;
int y = (nScrHeight - winHeight) / 2;
hwnd = ::CreateWindowEx(WS_EX_TOPMOST | WS_EX_TOOLWINDOW, className,
hwnd = ::CreateWindowEx(WS_EX_TOOLWINDOW, className,
TEXT("Banner"), WS_POPUP, x, y,
winWidth, winHeight, NULL, NULL, NULL, this);