diff options
| author | Kent Quirk <q@lindenlab.com> | 2010-02-20 14:41:18 -0500 | 
|---|---|---|
| committer | Kent Quirk <q@lindenlab.com> | 2010-02-20 14:41:18 -0500 | 
| commit | 36f708de17c64191c79a756ab7eedc3badac9828 (patch) | |
| tree | 25c79ce0ae35a344ab1cf883b822372c735f0123 | |
| parent | 4cf6ad1bd68ac2f944b93c1b5fed6d11ac69f56a (diff) | |
EXT-5560 - filter clear button was calling doDelete which had many more gyrations than onCommit, and only onCommit was needed
| -rw-r--r-- | indra/llui/llsearcheditor.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llsearcheditor.cpp b/indra/llui/llsearcheditor.cpp index 491eeeab54..8075575bab 100644 --- a/indra/llui/llsearcheditor.cpp +++ b/indra/llui/llsearcheditor.cpp @@ -156,7 +156,7 @@ void LLSearchEditor::setFocus( BOOL b )  void LLSearchEditor::onClearButtonClick(const LLSD& data)  {  	setText(LLStringUtil::null); -	mSearchEditor->doDelete(); // force keystroke callback +	mSearchEditor->onCommit(); // force keystroke callback  }  void LLSearchEditor::handleKeystroke()  | 
