diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-07-10 14:43:31 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-07-11 07:20:11 +0300 | 
| commit | cecc7261341cb6b7d65f0c851522610994a7521b (patch) | |
| tree | 0be6731fb4166dd9b92ec41c9810bd9fac1f6734 /indra | |
| parent | 52a581a39889dbc977f471c5e31e0fd468cc7bc6 (diff) | |
viewer#1965 Fixed selection swirls swirling forever when the UI is hidden.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llviewerdisplay.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/llviewerdisplay.cpp b/indra/newview/llviewerdisplay.cpp index c774e17e0c..adcf91f4ed 100644 --- a/indra/newview/llviewerdisplay.cpp +++ b/indra/newview/llviewerdisplay.cpp @@ -1539,6 +1539,11 @@ void render_ui_3d()          gObjectList.resetObjectBeacons();          gSky.addSunMoonBeacons();      } +    else +    { +        // Make sure particle effects disappear +        LLHUDObject::renderAllForTimer(); +    }      stop_glerror();  } | 
