diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-08-19 02:07:41 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-08-31 00:34:17 +0300 |
commit | d55a6308c2560ff508a3b0f112dfb3a0f2d54ab0 (patch) | |
tree | bc5ad7d4c9da62b2d53be8eef4929fa997111c3c | |
parent | 5c18921e9ada7799e31b30e16aabc0580e5d5d38 (diff) |
SL-17984 The top two lines in the Description field are not available for selection
Viewer was drawing empty "indicator_stack" over description
-rw-r--r-- | indra/newview/llpanelavatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index 9a030f1d7d..ff33efe4aa 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -120,7 +120,7 @@ void LLPanelProfileTab::setApplyProgress(bool started) } } - LLPanel* panel = findChild<LLPanel>("indicator_stack"); + LLView* panel = findChild<LLView>("indicator_stack"); if (panel) { panel->setVisible(started); |