diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2009-11-06 19:31:27 +0200 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2009-11-06 19:31:27 +0200 |
commit | 8a4e36a9bdd94ebd183d1f315aa51c6c52d0abbd (patch) | |
tree | 6804aded3b2acfe856b2f222aebdec4923db3925 /indra/newview/llinventorypanel.cpp | |
parent | 02608052592eb47aea7c8856e85d64aec086d658 (diff) |
fixed EXT-2295 "'Group Chat' btn makes chicklet appear only"
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llinventorypanel.cpp')
-rw-r--r-- | indra/newview/llinventorypanel.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 178e7d0823..80710610d4 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -86,6 +86,7 @@ #include "llviewerwindow.h" #include "llvoavatarself.h" #include "llwearablelist.h" +#include "llimfloater.h" static LLDefaultChildRegistry::Register<LLInventoryPanel> r("inventory_panel"); @@ -800,7 +801,11 @@ bool LLInventoryPanel::beginIMSession() name = llformat("Session %d", session_num++); } - gIMMgr->addSession(name, type, members[0], members); + LLUUID session_id = gIMMgr->addSession(name, type, members[0], members); + if (session_id != LLUUID::null) + { + LLIMFloater::show(session_id); + } return true; } |