diff options
| author | Rye Mutt <rye@alchemyviewer.org> | 2023-03-01 10:26:34 -0500 |
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2023-03-03 19:44:22 +0200 |
| commit | cdb3c018af9fc75064dc63537e61c5df567c331a (patch) | |
| tree | 04b8fafb96972dc7fa76cc61d008a59b45a4579a /indra/llui/lltextbase.cpp | |
| parent | 89afd1cd4838022267f117efb65939c04c35f3da (diff) | |
SL-19336 Unload avatar and group icons from memory when not visible to reduce memory pressure on extremely large friends lists
Diffstat (limited to 'indra/llui/lltextbase.cpp')
| -rw-r--r-- | indra/llui/lltextbase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 82a3c01c6d..3d8cf74855 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -1356,9 +1356,9 @@ void LLTextBase::draw() drawCursor(); } - mDocumentView->setVisible(FALSE); + mDocumentView->setVisibleDirect(FALSE); LLUICtrl::draw(); - mDocumentView->setVisible(TRUE); + mDocumentView->setVisibleDirect(TRUE); } |
