diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-08-20 23:37:08 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-08-20 23:37:18 +0300 |
commit | cb9c8526c6b11bb8d88e631b207a4e6790099e94 (patch) | |
tree | c90a9568151bd11e0081498319eb6954ffd27a4e /indra/newview/llappviewer.cpp | |
parent | 49b7ce025d6d1e3adb70c28b276a9b7378f57a9f (diff) |
SL-15850 Mangled chat in case of lost connection
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 65db910c08..ccd9e76f53 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -5039,13 +5039,18 @@ void LLAppViewer::idle() } } + + // Update layonts, handle mouse events, tooltips, e t c + // updateUI() needs to be called even in case viewer disconected + // since related notification still needs handling and allows + // opening chat. + gViewerWindow->updateUI(); + if (gDisconnected) { return; } - gViewerWindow->updateUI(); - if (gTeleportDisplay) { return; |