diff options
author | Seth ProductEngine <slitovchuk@productengine.com> | 2011-03-22 23:07:33 +0200 |
---|---|---|
committer | Seth ProductEngine <slitovchuk@productengine.com> | 2011-03-22 23:07:33 +0200 |
commit | c2f34934e85779616fe129970831f31e0fb99348 (patch) | |
tree | 28bb5f6e9c373c61846bdbad4267ca378c364d15 /indra/newview | |
parent | df63c6931e81c034887611711095e3134b9a7318 (diff) |
STORM-1097 FIXED opening the floater containing a detached side bar tab.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llsidetray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsidetray.cpp b/indra/newview/llsidetray.cpp index a9bb01ac70..fcd200d24a 100644 --- a/indra/newview/llsidetray.cpp +++ b/indra/newview/llsidetray.cpp @@ -686,7 +686,7 @@ LLPanel* LLSideTray::openChildPanel(LLSideTrayTab* tab, const std::string& panel LLFloater* floater_tab = LLFloaterReg::getInstance("side_bar_tab", tab_name); if (!floater_tab) return NULL; - floater_tab->openFloater(panel_name); + floater_tab->openFloater(tab_name); } LLSideTrayPanelContainer* container = dynamic_cast<LLSideTrayPanelContainer*>(view->getParent()); |