diff options
| -rw-r--r-- | indra/newview/llgroupactions.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llgroupactions.cpp b/indra/newview/llgroupactions.cpp index d2bd716f55..65c91b54b7 100644 --- a/indra/newview/llgroupactions.cpp +++ b/indra/newview/llgroupactions.cpp @@ -366,6 +366,11 @@ void LLGroupActions::show(const LLUUID& group_id)  	params["open_tab_name"] = "panel_group_info_sidetray";  	LLFloaterSidePanelContainer::showPanel("people", "panel_group_info_sidetray", params); +    LLFloater *floater = LLFloaterReg::getTypedInstance<LLFloaterSidePanelContainer>("people"); +    if (!floater->isFrontmost()) +    { +        floater->setVisibleAndFrontmost(TRUE, params); +    }  }  void LLGroupActions::refresh_notices()  | 
