diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-11-02 15:05:35 +0200 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-11-02 15:05:35 +0200 |
commit | 3c03ea3880c4292369df9e0914f8241b74a54d32 (patch) | |
tree | 032eedf2afbb9d9bd0e2e487b11fd79def3680c5 /indra/newview | |
parent | 6bb24921564c05f8d3f83180e917421b3c27d28f (diff) |
fix fir Critical EXT-1977 Local Chat Toasts Sometimes Dropped
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llnearbychathandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 957513e154..8a8ad9d073 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -262,8 +262,9 @@ void LLNearbyChatScreenChannel::showToastsBottom() toast_rect.setLeftTopAndSize(getRect().mLeft , toast_top, toast_rect.getWidth() ,toast_rect.getHeight()); toast->setRect(toast_rect); - + toast->setIsHidden(false); toast->setVisible(TRUE); + bottom = toast->getRect().mTop; } } |