diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-16 16:34:04 +0000 |
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-16 16:34:04 +0000 |
| commit | d0d9ad2b36812845c4b91ce44eeda827089c78e1 (patch) | |
| tree | dde1c413bcc9e0cbc02f4b17f4e7cc84be64f3f2 /indra/newview/llimfloater.cpp | |
| parent | 3dc2a730fa15ca41800c591c58b3ebb34d6419b4 (diff) | |
| parent | 6a4aea457159192951b584c05a4d3a80a1d08290 (diff) | |
PE merge.
Diffstat (limited to 'indra/newview/llimfloater.cpp')
| -rw-r--r-- | indra/newview/llimfloater.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 8b2c5b039f..847695577a 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -497,7 +497,11 @@ void LLIMFloater::setVisible(BOOL visible) { //only if floater was construced and initialized from xml updateMessages(); - mInputEditor->setFocus(TRUE); + //prevent steal focus when IM opened in multitab mode + if (!isChatMultiTab()) + { + mInputEditor->setFocus(TRUE); + } } if(!visible) |
