diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lloutfitgallery.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/indra/newview/lloutfitgallery.cpp b/indra/newview/lloutfitgallery.cpp index e621c32911..65ec38a41d 100644 --- a/indra/newview/lloutfitgallery.cpp +++ b/indra/newview/lloutfitgallery.cpp @@ -1094,8 +1094,11 @@ bool LLOutfitGalleryItem::openOutfitsContent()              {                  outfit_list->setSelectedOutfitByUUID(mUUID);                  LLAccordionCtrlTab* tab = accordion->getSelectedTab(); -                tab->showAndFocusHeader(); -                return true; +                if (tab) +                { +                    tab->showAndFocusHeader(); +                    return true; +                }              }          }      } | 
