Skip to content
Snippets Groups Projects
Commit e7519e8a authored by Alexei Arabadji's avatar Alexei Arabadji
Browse files

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
parent 93c1e1bd
No related branches found
No related tags found
No related merge requests found
...@@ -127,6 +127,10 @@ void LLDockableFloater::setVisible(BOOL visible) ...@@ -127,6 +127,10 @@ void LLDockableFloater::setVisible(BOOL visible)
mDockControl.get()->repositionDockable(); mDockControl.get()->repositionDockable();
} }
if (visible)
{
LLFloater::setFrontmost(TRUE);
}
LLFloater::setVisible(visible); LLFloater::setVisible(visible);
} }
......
...@@ -90,9 +90,9 @@ BOOL LLSysWellWindow::postBuild() ...@@ -90,9 +90,9 @@ BOOL LLSysWellWindow::postBuild()
void LLSysWellWindow::setMinimized(BOOL minimize) void LLSysWellWindow::setMinimized(BOOL minimize)
{ {
// we don't show empty Message Well window // we don't show empty Message Well window
if (!minimize) if (!minimize && isWindowEmpty())
{ {
setVisible(!isWindowEmpty()); return;
} }
LLDockableFloater::setMinimized(minimize); LLDockableFloater::setMinimized(minimize);
...@@ -268,8 +268,11 @@ void LLSysWellWindow::toggleWindow() ...@@ -268,8 +268,11 @@ void LLSysWellWindow::toggleWindow()
{ {
setVisible(FALSE); setVisible(FALSE);
} }
//set window in foreground else if(!isDocked())
setFocus(getVisible()); {
// bring to front undocked floater
setVisible(TRUE);
}
} }
//--------------------------------------------------------------------------------- //---------------------------------------------------------------------------------
......
...@@ -225,6 +225,7 @@ void LLToast::setVisible(BOOL show) ...@@ -225,6 +225,7 @@ void LLToast::setVisible(BOOL show)
{ {
mTimer.start(); mTimer.start();
} }
LLModalDialog::setFrontmost(TRUE);
} }
LLPanel::setVisible(show); LLPanel::setVisible(show);
if(mPanel) if(mPanel)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment