MAINT-7783 FIXED Outfit gallery panel is opened briefly when you are quitting viewer

master
Mnikolenko Productengine 2017-09-08 18:24:16 +03:00
parent dcf7638215
commit 56f53cd9f5
1 changed files with 4 additions and 1 deletions

View File

@ -74,7 +74,10 @@ void LLFloaterSidePanelContainer::closeFloater(bool app_quitting)
{
edit_wearable_ptr->onClose();
}
panel_appearance->showOutfitsInventoryPanel();
if(!app_quitting)
{
panel_appearance->showOutfitsInventoryPanel();
}
}
}
}