summaryrefslogtreecommitdiff
path: root/indra/llui/llsearcheditor.cpp
diff options
context:
space:
mode:
authorDmitry Zaporozhan <dzaporozhan@productengine.com>2010-02-18 14:43:46 +0200
committerDmitry Zaporozhan <dzaporozhan@productengine.com>2010-02-18 14:43:46 +0200
commit25800b4b3728b2691a486bbbbd95c9f20e63a1c5 (patch)
tree3343dc3ddde18ee2b7f08098f4dd19e739f3fa1d /indra/llui/llsearcheditor.cpp
parente624b9c6fad814c39972eaf5707d98084578bb62 (diff)
Fixed normal bug EXT-5468 - Lists from people panel are not refreshed after filter field has been reseted by (x).
--HG-- branch : product-engine
Diffstat (limited to 'indra/llui/llsearcheditor.cpp')
-rw-r--r--indra/llui/llsearcheditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llsearcheditor.cpp b/indra/llui/llsearcheditor.cpp
index 491eeeab54..e6c5e3f334 100644
--- a/indra/llui/llsearcheditor.cpp
+++ b/indra/llui/llsearcheditor.cpp
@@ -155,7 +155,7 @@ void LLSearchEditor::setFocus( BOOL b )
void LLSearchEditor::onClearButtonClick(const LLSD& data)
{
- setText(LLStringUtil::null);
+ mSearchEditor->selectAll();
mSearchEditor->doDelete(); // force keystroke callback
}