diff options
author | Igor Borovkov <iborovkov@productengine.com> | 2010-02-24 17:18:05 +0200 |
---|---|---|
committer | Igor Borovkov <iborovkov@productengine.com> | 2010-02-24 17:18:05 +0200 |
commit | 6575b685e91d334198789c88dec2efab7e5a1ac9 (patch) | |
tree | e2e2532ebb95682dca1c061421d24360941da2a3 /indra/llcommon/llchat.h | |
parent | df29381dc0027fd1e33cc68b2c0b22e85ad622ad (diff) |
fixed EXT-5526 Objects are shown as persons in the chat history from previous sessions
- new chat source type CHAT_SOURCE_UNKNOWN for avatar names not in cache and object names consisting of two words (avatar names like)
- new icon (unknown_icon.png) for message headers () of nearby chat messagses coming from CHAT_SOURCE_UNKNOWN
- context menu no longer displayed for object names from chat history (no UUIDs)
- double click on message headers in nearby chat no longer opens Inspector (no UUIDs)
- object names (loaded from chat history) in nearby chat are no longer SLURLed (no UUIDs for them)
--HG--
branch : product-engine
Diffstat (limited to 'indra/llcommon/llchat.h')
-rw-r--r-- | indra/llcommon/llchat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llchat.h b/indra/llcommon/llchat.h index 52238d4533..f1b9091298 100644 --- a/indra/llcommon/llchat.h +++ b/indra/llcommon/llchat.h @@ -43,7 +43,8 @@ typedef enum e_chat_source_type { CHAT_SOURCE_SYSTEM = 0, CHAT_SOURCE_AGENT = 1, - CHAT_SOURCE_OBJECT = 2 + CHAT_SOURCE_OBJECT = 2, + CHAT_SOURCE_UNKNOWN = 3 } EChatSourceType; typedef enum e_chat_type |