diff options
author | Mike Antipov <mantipov@productengine.com> | 2010-05-26 10:24:05 +0300 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2010-05-26 10:24:05 +0300 |
commit | 14418c197076d0eb01bb0852b8716fa966bc9d53 (patch) | |
tree | 3466623f7db960a929a236c7a92fb109c581abdb /indra/newview/llinventorybridge.cpp | |
parent | 85b62440ef1127e6f3f5b853374cea51f12c37e0 (diff) | |
parent | 6885a1a6ad62f0e0e08a272911c8ac057a5cd94d (diff) |
Merge from default branch, resolving conflict in indra/newview/llinventorybridge.cpp
LLObjectBridge::openItem() was concurrency modified.
Applied behavior that was changed in c3220f7f7699 according to
VWR-13743 FIXED Change Request: Change double click action for inventory wearables
DEV-33391 FIXED Change Request: Change double click action for inventory wearables
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 35f7cbcd01..29865e420a 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -4141,19 +4141,9 @@ void LLObjectBridge::performAction(LLInventoryModel* model, std::string action) void LLObjectBridge::openItem() { - LLViewerInventoryItem* item = getItem(); - - if (item) - { - LLInvFVBridgeAction::doAction(item->getType(),mUUID,getInventoryModel()); - } - - show_item_profile(mUUID); - - // Disable old properties floater; this is replaced by the sidepanel. - /* - LLFloaterReg::showInstance("properties", mUUID); - */ + // object double-click action is to wear/unwear object + performAction(getInventoryModel(), + get_is_item_worn(mUUID) ? "detach" : "attach"); } LLFontGL::StyleFlags LLObjectBridge::getLabelStyle() const |