summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-01-27 02:10:46 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2024-01-29 22:11:35 +0200
commitee7c3ea792d889b8e852bfa07395848f0d893ebb (patch)
tree8c1c3f65def4d413105c69fcdbbc34b4c76114d3 /indra
parentdd09848d4b99a38f74485a75b333725e4956a640 (diff)
SL-18721 Shutdown fixes #3
Fix dialog box being blank in task bar
Diffstat (limited to 'indra')
-rw-r--r--indra/llwindow/llwindowwin32.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp
index 0c1ed85477..4b72ade469 100644
--- a/indra/llwindow/llwindowwin32.cpp
+++ b/indra/llwindow/llwindowwin32.cpp
@@ -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");
}