diff options
author | Paul Guslisty <pguslisty@productengine.com> | 2010-06-21 14:34:08 +0300 |
---|---|---|
committer | Paul Guslisty <pguslisty@productengine.com> | 2010-06-21 14:34:08 +0300 |
commit | 5fcdff31253231c6a63fe05560be9a65fb0de575 (patch) | |
tree | 4d31bfd65b9c8e7e5e77269f85d42dd16cc65f03 /indra/newview/llpaneloutfitedit.cpp | |
parent | a3a4a0c62c6dae6635fd6de7c46658ad5ab17e5f (diff) |
EXT-7797 FIXED Outfit Editor: Clicking fliter button should set focus in filter field
- Set focus on filter field
Reviewed by Mike Antipov and Neal Orman at https://codereview.productengine.com/secondlife/r/598/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpaneloutfitedit.cpp')
-rw-r--r-- | indra/newview/llpaneloutfitedit.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llpaneloutfitedit.cpp b/indra/newview/llpaneloutfitedit.cpp index 5fac7efb84..7a588193c8 100644 --- a/indra/newview/llpaneloutfitedit.cpp +++ b/indra/newview/llpaneloutfitedit.cpp @@ -452,6 +452,10 @@ void LLPanelOutfitEdit::showWearablesFilter() mSearchFilter->clear(); onSearchEdit(LLStringUtil::null); } + else + { + mSearchFilter->setFocus(TRUE); + } } void LLPanelOutfitEdit::showWearablesListView() |