SL-18721 Shutdown fixes #3

Fix dialog box being blank in task bar
master
Andrey Kleshchev 2024-01-27 02:10:46 +02:00 committed by Andrey Kleshchev
parent dd09848d4b
commit ee7c3ea792
1 changed files with 3 additions and 0 deletions

View File

@ -3657,6 +3657,9 @@ void LLSplashScreenWin32::showImpl()
NULL, // no parent
(DLGPROC) LLSplashScreenWin32::windowProc);
ShowWindow(mWindow, SW_SHOW);
// Should set taskbar text without creating a header for the window (caption)
SetWindowTextA(mWindow, "Second Life");
}