diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-04-12 14:21:34 +0300 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-04-12 14:21:34 +0300 |
commit | bdb437e3b0e8aaa45493304b93128e8fe76cabe5 (patch) | |
tree | ab2d9894663f691168e98a0b54382feee7de41e2 /indra/newview/lltoast.cpp | |
parent | 51da51894cef9bf606d2117584e24679a1768813 (diff) |
fix for Bug EXT-6713 Normal Gaps in nearby chat toasts queue
and EXT-6714 Normal Old chat toast is shown while chat log is open
reviwed https://codereview.productengine.com/secondlife/r/212/ manttipov
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/lltoast.cpp')
-rw-r--r-- | indra/newview/lltoast.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/lltoast.cpp b/indra/newview/lltoast.cpp index 60657d3fa7..911ed6ade7 100644 --- a/indra/newview/lltoast.cpp +++ b/indra/newview/lltoast.cpp @@ -285,6 +285,12 @@ void LLToast::setVisible(BOOL show) } LLModalDialog::setFrontmost(FALSE); } + else + { + //hide "hide" button in case toast was hidden without mouse_leave + if(mHideBtn) + mHideBtn->setVisible(show); + } LLFloater::setVisible(show); if(mPanel) { |