diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-02-18 14:43:46 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2010-02-18 14:43:46 +0200 |
commit | 25800b4b3728b2691a486bbbbd95c9f20e63a1c5 (patch) | |
tree | 3343dc3ddde18ee2b7f08098f4dd19e739f3fa1d /indra/llui | |
parent | e624b9c6fad814c39972eaf5707d98084578bb62 (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')
-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..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 } |