summaryrefslogtreecommitdiff
path: root/indra/llui/lllineeditor.cpp
diff options
context:
space:
mode:
authorprep <prep@lindenlab.com>2013-03-21 11:21:45 -0400
committerprep <prep@lindenlab.com>2013-03-21 11:21:45 -0400
commitf3457461617119bda93f506977170cb8f15a270d (patch)
treed4b9e45586725447ef939b6876c7d19d7ff9f573 /indra/llui/lllineeditor.cpp
parent33954bbbe5517a0ad72ffc6bad7cb94985b3bf8b (diff)
parentf2948cb1eb8866716a84868cccbfafcd742c0771 (diff)
Folded in changes from sunshine-stable
Diffstat (limited to 'indra/llui/lllineeditor.cpp')
-rw-r--r--indra/llui/lllineeditor.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp
index f8b84e39b5..5478e85e13 100644
--- a/indra/llui/lllineeditor.cpp
+++ b/indra/llui/lllineeditor.cpp
@@ -202,6 +202,14 @@ LLLineEditor::LLLineEditor(const LLLineEditor::Params& p)
LLLineEditor::~LLLineEditor()
{
mCommitOnFocusLost = FALSE;
+
+ // Make sure no context menu linger around once the widget is deleted
+ LLContextMenu* menu = static_cast<LLContextMenu*>(mContextMenuHandle.get());
+ if (menu)
+ {
+ menu->hide();
+ }
+ setContextMenu(NULL);
// calls onCommit() while LLLineEditor still valid
gFocusMgr.releaseFocusIfNeeded( this );