From d63b65f83e160c2693f95f06ba36a707c707f297 Mon Sep 17 00:00:00 2001 From: Hleb Valoshka <375gnu@gmail.com> Date: Sun, 13 Oct 2019 23:44:00 +0300 Subject: [PATCH] [win32] Don't make splash top most --- src/celestia/win32/winsplash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/celestia/win32/winsplash.cpp b/src/celestia/win32/winsplash.cpp index 9829648d..84e13ac5 100644 --- a/src/celestia/win32/winsplash.cpp +++ b/src/celestia/win32/winsplash.cpp @@ -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);