diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-04-23 01:19:05 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-04-23 01:19:05 +0300 |
commit | ace1b6b8581ef7934d6d07bc2f70eb807a7718a7 (patch) | |
tree | 2e3e6ef95e328981345c92b461b44cdd57f6896b /indra | |
parent | c944641900d04a587fd2c73a87803e489b23f410 (diff) |
SL-17270 FIXED Torn-off menus not getting update after operation
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/llmenugl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index 76fd789bec..56bcbb2de5 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -3942,8 +3942,8 @@ void LLTearOffMenu::draw() { // animate towards target height reshape(getRect().getWidth(), llceil(lerp((F32)getRect().getHeight(), (F32)mTargetHeight, LLSmoothInterpolation::getInterpolant(0.05f)))); - mMenu->needsArrange(); } + mMenu->needsArrange(); LLFloater::draw(); } |