diff options
| author | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-06-24 19:17:03 +0300 |
|---|---|---|
| committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-06-24 19:17:03 +0300 |
| commit | 4671dd6575c22f57d32fb8871d5c313fbb2b7a76 (patch) | |
| tree | 3915bbee6cb1413088f5c1913fd930e59216b569 /indra/newview/llpaneloutfitsinventory.cpp | |
| parent | d7e29c9fb2cc78ef6a705e23b56333912e406401 (diff) | |
| parent | f261af07b6b4e9381d9b7d652897d0965c6a426e (diff) | |
merge
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpaneloutfitsinventory.cpp')
| -rw-r--r-- | indra/newview/llpaneloutfitsinventory.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llpaneloutfitsinventory.cpp b/indra/newview/llpaneloutfitsinventory.cpp index 2f1cad8a75..076e6485a8 100644 --- a/indra/newview/llpaneloutfitsinventory.cpp +++ b/indra/newview/llpaneloutfitsinventory.cpp @@ -169,7 +169,14 @@ void LLPanelOutfitsInventory::onSearchEdit(const std::string& string) void LLPanelOutfitsInventory::onWearButtonClick() { - mMyOutfitsPanel->performAction("replaceoutfit"); + if (mMyOutfitsPanel->hasItemSelected()) + { + mMyOutfitsPanel->wearSelectedItems(); + } + else + { + mMyOutfitsPanel->performAction("replaceoutfit"); + } } bool LLPanelOutfitsInventory::onSaveCommit(const LLSD& notification, const LLSD& response) |
