Skip to content
Snippets Groups Projects
Commit 8a4b7c85 authored by Seth ProductEngine's avatar Seth ProductEngine
Browse files

STORM-184 FIXED Disabled "Save" command for outfits without name (with "No...

STORM-184 FIXED Disabled "Save" command for outfits without name (with "No Outfit" in My Appearance SP).
parent 42b49397
No related branches found
No related tags found
No related merge requests found
...@@ -2204,12 +2204,11 @@ void LLAppearanceMgr::updateIsDirty() ...@@ -2204,12 +2204,11 @@ void LLAppearanceMgr::updateIsDirty()
base_outfit = catp->getUUID(); base_outfit = catp->getUUID();
} }
if(base_outfit.isNull()) // Set dirty to "false" if no base outfit found to disable "Save"
{ // and leave only "Save As" enabled in My Outfits.
// no outfit link found, display "unsaved outfit" mOutfitIsDirty = false;
mOutfitIsDirty = true;
} if (base_outfit.notNull())
else
{ {
LLIsOfAssetType collector = LLIsOfAssetType(LLAssetType::AT_LINK); LLIsOfAssetType collector = LLIsOfAssetType(LLAssetType::AT_LINK);
...@@ -2248,8 +2247,6 @@ void LLAppearanceMgr::updateIsDirty() ...@@ -2248,8 +2247,6 @@ void LLAppearanceMgr::updateIsDirty()
return; return;
} }
} }
mOutfitIsDirty = false;
} }
} }
...@@ -2635,6 +2632,7 @@ void LLAppearanceMgr::dumpItemArray(const LLInventoryModel::item_array_t& items, ...@@ -2635,6 +2632,7 @@ void LLAppearanceMgr::dumpItemArray(const LLInventoryModel::item_array_t& items,
LLAppearanceMgr::LLAppearanceMgr(): LLAppearanceMgr::LLAppearanceMgr():
mAttachmentInvLinkEnabled(false), mAttachmentInvLinkEnabled(false),
mOutfitIsDirty(false), mOutfitIsDirty(false),
mOutfitLocked(false),
mIsInUpdateAppearanceFromCOF(false) mIsInUpdateAppearanceFromCOF(false)
{ {
LLOutfitObserver& outfit_observer = LLOutfitObserver::instance(); LLOutfitObserver& outfit_observer = LLOutfitObserver::instance();
......
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