From e7519e8a977138627b429ca43a10184c82efc66e Mon Sep 17 00:00:00 2001 From: Alexei Arabadji Date: Mon, 16 Nov 2009 11:41:21 +0200 Subject: fixed EXT-2402 "Clicking on notification item in the Message Well should bring it to front" made LLToast and LLDockableFloater goes foreground on setVisible(TRUE); --HG-- branch : product-engine --- indra/newview/lltoast.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'indra/newview/lltoast.cpp') diff --git a/indra/newview/lltoast.cpp b/indra/newview/lltoast.cpp index 903df21e78..513439daeb 100644 --- a/indra/newview/lltoast.cpp +++ b/indra/newview/lltoast.cpp @@ -225,6 +225,7 @@ void LLToast::setVisible(BOOL show) { mTimer.start(); } + LLModalDialog::setFrontmost(TRUE); } LLPanel::setVisible(show); if(mPanel) -- cgit v1.2.3 From 508097d0f691e9705ab25d0b42f13a8d02a90049 Mon Sep 17 00:00:00 2001 From: Alexei Arabadji Date: Mon, 16 Nov 2009 14:11:50 +0200 Subject: fixed EXT-2500 "Avatar stops moving when online/offline notification toast popups" --HG-- branch : product-engine --- indra/newview/lltoast.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/newview/lltoast.cpp') diff --git a/indra/newview/lltoast.cpp b/indra/newview/lltoast.cpp index 513439daeb..ed2cedbd10 100644 --- a/indra/newview/lltoast.cpp +++ b/indra/newview/lltoast.cpp @@ -225,7 +225,7 @@ void LLToast::setVisible(BOOL show) { mTimer.start(); } - LLModalDialog::setFrontmost(TRUE); + LLModalDialog::setFrontmost(FALSE); } LLPanel::setVisible(show); if(mPanel) -- cgit v1.2.3