diff options
| author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-10-20 23:54:00 +0300 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-10-21 09:29:23 +0300 |
| commit | 528c4b5f312a68056073c210c415c76d4eab4091 (patch) | |
| tree | 71af9bc8e135dc249b75f65c982bb0510991456c | |
| parent | aa49a3d7e6da7b2b83d78759c65d21f9865ddea5 (diff) | |
#2427 Show torn off chat when clicking on a message popup
| -rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index d821d9a4a5..a0f2dbe197 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -1698,6 +1698,11 @@ void LLFloaterIMContainer::showConversation(const LLUUID& session_id) if (session_floater) { session_floater->restoreFloater(); + if (session_floater->isTornOff() && session_floater->isMinimized()) + { + session_floater->setMinimized(false); + session_floater->setFocus(true); + } } } |
