From e58c6c1f397c1f569a01a39bc8a91adcf5d14d47 Mon Sep 17 00:00:00 2001 From: Beeks Date: Tue, 14 Sep 2010 22:45:43 -0400 Subject: [PATCH] Added a separator on the Object right click menu at someone's request. Signed-off-by: Beeks --- indra/newview/llinventorybridge.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index d2a6db6a9..036817791 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -4011,6 +4011,7 @@ void LLObjectBridge::buildContextMenu(LLMenuGL& menu, U32 flags) if( avatarp->isWearingAttachment( mUUID ) ) { + items.push_back(std::string("Attach Separator")); items.push_back(std::string("Detach From Yourself")); } else @@ -4034,7 +4035,7 @@ void LLObjectBridge::buildContextMenu(LLMenuGL& menu, U32 flags) items.push_back(std::string("Object Wear")); items.push_back(std::string("Attach To")); items.push_back(std::string("Attach To HUD")); - // commented out for DEV-32347 - AND Commented back in for non-morons. + // commented out for DEV-32347 - AND Commented back in for non-morons. -HgB items.push_back(std::string("Restore to Last Position"));