diff options
author | Andrew Dyukov <adyukov@productengine.com> | 2009-12-04 13:46:58 +0200 |
---|---|---|
committer | Andrew Dyukov <adyukov@productengine.com> | 2009-12-04 13:46:58 +0200 |
commit | 96a11910b19254e180247f76b9c0c201bbdf178c (patch) | |
tree | 60b093b458503e174e66b4f27fde9e4d090f328c /indra/newview/llchathistory.cpp | |
parent | ebdb78ef3b25247fd86f48833004b4254ca8e360 (diff) |
Fixed normal bug EXT-1710 (IM & Chat: System messages should have
SL icon and title). "i" icon is temporarily used, changing it in
xml to SL icon moved to new bug- EXT-3132.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llchathistory.cpp')
-rw-r--r-- | indra/newview/llchathistory.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index 96b5ae5908..efe9ea4c35 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -211,6 +211,10 @@ public: { icon->setValue(chat.mFromID); } + else if (userName->getValue().asString()==LLTrans::getString("SECOND_LIFE")) + { + icon->setValue(LLSD("SL_Logo")); + } } |