Skip to content
Snippets Groups Projects
Commit 756ab4ca authored by Richard Linden's avatar Richard Linden
Browse files

SH-3864 FIX Closing the Inventory window exits outfit editing.

cleaned up logic when closing floatersidepanels
parent f34ef33e
No related branches found
No related tags found
Loading
...@@ -59,30 +59,22 @@ void LLFloaterSidePanelContainer::onOpen(const LLSD& key) ...@@ -59,30 +59,22 @@ void LLFloaterSidePanelContainer::onOpen(const LLSD& key)
void LLFloaterSidePanelContainer::onClickCloseBtn() void LLFloaterSidePanelContainer::onClickCloseBtn()
{ {
llinfos << "close clicked" << llendl;
LLPanelOutfitEdit* panel_outfit_edit = LLPanelOutfitEdit* panel_outfit_edit =
dynamic_cast<LLPanelOutfitEdit*>(LLFloaterSidePanelContainer::getPanel("appearance", "panel_outfit_edit")); dynamic_cast<LLPanelOutfitEdit*>(LLFloaterSidePanelContainer::getPanel("appearance", "panel_outfit_edit"));
if (panel_outfit_edit && panel_outfit_edit->getVisible()) if (panel_outfit_edit)
{ {
LLFloater *parent = gFloaterView->getParentFloater(panel_outfit_edit); LLFloater *parent = gFloaterView->getParentFloater(panel_outfit_edit);
if (parent == this) if (parent == this )
{ {
LLSidepanelAppearance* panel_appearance = LLSidepanelAppearance* panel_appearance = dynamic_cast<LLSidepanelAppearance*>(getPanel("appearance"));
dynamic_cast<LLSidepanelAppearance*>(getPanel("appearance")); if ( panel_appearance )
panel_appearance->showOutfitsInventoryPanel(); {
panel_appearance->getWearable()->onClose();
panel_appearance->showOutfitsInventoryPanel();
}
} }
} }
if ( panel_outfit_edit )
{
LLSidepanelAppearance* panel_appearance = dynamic_cast<LLSidepanelAppearance*>(getPanel("appearance"));
if ( panel_appearance )
{
panel_appearance->getWearable()->onClose();
panel_appearance->showOutfitsInventoryPanel();
}
}
LLFloater::onClickCloseBtn(); LLFloater::onClickCloseBtn();
} }
......
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