diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-10-15 12:10:17 +0300 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-10-15 12:10:17 +0300 |
commit | 43e06e0352cd7ea1984f80449c74160a0b1f49aa (patch) | |
tree | 511c43b3b9cfe7b09a752657ee32bbf6a4bf824e /indra/newview | |
parent | bb89ca25d3dd35e0e97deb3e2a77b641d515bd80 (diff) |
MAINT-925 FIXED Objects called "Second Life" are unclickable & unmuteable via local chat
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llchathistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index dc0835eb1c..4b426081d0 100755 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -526,7 +526,7 @@ protected: showSystemContextMenu(x,y); if(mAvatarID.notNull() && mSourceType == CHAT_SOURCE_AGENT) showAvatarContextMenu(x,y); - if(mAvatarID.notNull() && mSourceType == CHAT_SOURCE_OBJECT && SYSTEM_FROM != mFrom) + if(mAvatarID.notNull() && mSourceType == CHAT_SOURCE_OBJECT) showObjectContextMenu(x,y); } |