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/newview | |
| parent | ff118b7d21633cc020b2fb4c833684b4f98b4e5e (diff) | |
MAINT-6726 Fixed LLLineEditor menus staying in memory forever
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/lllocationinputctrl.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/lllocationinputctrl.cpp b/indra/newview/lllocationinputctrl.cpp index 53b2ca2b74..11bc1425f9 100644 --- a/indra/newview/lllocationinputctrl.cpp +++ b/indra/newview/lllocationinputctrl.cpp @@ -243,7 +243,7 @@ LLLocationInputCtrl::LLLocationInputCtrl(const LLLocationInputCtrl::Params& p)  	params.commit_on_focus_lost(false);  	params.follows.flags(FOLLOWS_ALL);  	mTextEntry = LLUICtrlFactory::create<LLURLLineEditor>(params); -	mTextEntry->setContextMenu(NULL); +	mTextEntry->resetContextMenu();  	addChild(mTextEntry);  	// LLLineEditor is replaced with LLLocationLineEditor | 
