diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2024-01-23 23:13:00 +0100 |
---|---|---|
committer | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2024-01-23 23:13:00 +0100 |
commit | fea01389c94002ffce639cab164280b3e558147c (patch) | |
tree | 25e6e38bc78408f75c2da7ed40398f2cbc4cc826 /indra | |
parent | f6ceafee5bb26cf86d64959cabf68deefaf791a8 (diff) |
SL-20416 Fix Crash Report 1409376
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/llfloater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } |