diff options
author | andreykproductengine <akleshchev@productengine.com> | 2016-09-13 20:32:34 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2016-09-13 20:32:34 +0300 |
commit | da23e0f925742045013fc09e75b962c65e1cda88 (patch) | |
tree | 39631ebc4f046f3b4416cfd4b91ba56ddabd57de /indra/llui/lltextbase.cpp | |
parent | ff118b7d21633cc020b2fb4c833684b4f98b4e5e (diff) |
MAINT-6726 Fixed LLLineEditor menus staying in memory forever
Diffstat (limited to 'indra/llui/lltextbase.cpp')
-rw-r--r-- | indra/llui/lltextbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 7061d16dd4..20be739286 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -1961,7 +1961,7 @@ void LLTextBase::createUrlContextMenu(S32 x, S32 y, const std::string &in_url) LLContextMenu* menu = static_cast<LLContextMenu*>(mPopupMenuHandle.get()); if (menu) { - menu->updateParent(NULL); + menu->die(); mPopupMenuHandle.markDead(); } llassert(LLMenuGL::sMenuContainer != NULL); |