diff options
author | dmitry <none@none> | 2013-08-05 15:09:01 +0300 |
---|---|---|
committer | dmitry <none@none> | 2013-08-05 15:09:01 +0300 |
commit | 106f161a6e33cef2ef1651dff829aca0193e04ee (patch) | |
tree | 22626c6484cbb5178db690afb0099615fd451ef4 /indra/newview/llpanelmaininventory.cpp | |
parent | 48f702029f498b83c6a9ade54c3814def0df4bc8 (diff) |
MAINT-822 FIXED [PUBLIC]Inventory window should focus on search field
Diffstat (limited to 'indra/newview/llpanelmaininventory.cpp')
-rwxr-xr-x | indra/newview/llpanelmaininventory.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index d6535c88e9..c38a78365a 100755 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -540,6 +540,13 @@ void LLPanelMainInventory::changed(U32) updateItemcountText(); } +void LLPanelMainInventory::setFocusFilterEditor() +{ + if(mFilterEditor) + { + mFilterEditor->setFocus(true); + } +} // virtual void LLPanelMainInventory::draw() |