diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-09-08 18:24:16 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-09-08 18:24:16 +0300 |
commit | 56f53cd9f5319ac0c3b45bd18a998bb10df928a3 (patch) | |
tree | cf827c81a72d8fd469528fcd34434af7483adcc5 | |
parent | dcf763821521ef2b74eff4a8f1ab429d33d37c32 (diff) |
MAINT-7783 FIXED Outfit gallery panel is opened briefly when you are quitting viewer
-rw-r--r-- | indra/newview/llfloatersidepanelcontainer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llfloatersidepanelcontainer.cpp b/indra/newview/llfloatersidepanelcontainer.cpp index 8b3cfa7fd5..64ddeff1b0 100644 --- a/indra/newview/llfloatersidepanelcontainer.cpp +++ b/indra/newview/llfloatersidepanelcontainer.cpp @@ -74,7 +74,10 @@ void LLFloaterSidePanelContainer::closeFloater(bool app_quitting) { edit_wearable_ptr->onClose(); } - panel_appearance->showOutfitsInventoryPanel(); + if(!app_quitting) + { + panel_appearance->showOutfitsInventoryPanel(); + } } } } |