From fea01389c94002ffce639cab164280b3e558147c Mon Sep 17 00:00:00 2001 From: Alexander Gavriliuk Date: Tue, 23 Jan 2024 23:13:00 +0100 Subject: SL-20416 Fix Crash Report 1409376 --- indra/llui/llfloater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra') diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 31019f6c33..fb90cebd39 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -2572,7 +2572,7 @@ void LLFloaterView::bringToFront(LLFloater* child, BOOL give_focus, BOOL restore return; } - if (mFrontChild && !mFrontChild->isDead()) + if (mFrontChild && !mFrontChild->isDead() && mFrontChild->getVisible()) { mFrontChild->goneFromFront(); } -- cgit v1.2.3