diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index 97a55a0429..a38dfbfd7c 100755 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -538,7 +538,17 @@ void LLPanelMainInventory::onClearSearch() if (mActivePanel) { mActivePanel->setFilterSubString(LLStringUtil::null); - mActivePanel->setFilterTypes(0xffffffffffffffffULL); + // + //mActivePanel->setFilterTypes(0xffffffffffffffffULL); + if (mActivePanel->getName() == "Worn Items") + { + mActivePanel->setFilterTypes(0xffffffff - (0x1 << LLInventoryType::IT_GESTURE)); + } + else + { + mActivePanel->setFilterTypes(0xffffffffffffffffULL); + } + // // ## Zi: Filter Links Menu // We don't do this anymore, we have a menu option for it now. -Zi