summaryrefslogtreecommitdiff
path: root/indra/newview/llpaneleditwearable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llpaneleditwearable.cpp')
-rw-r--r--indra/newview/llpaneleditwearable.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llpaneleditwearable.cpp b/indra/newview/llpaneleditwearable.cpp
index 997edbab07..ad55936cab 100644
--- a/indra/newview/llpaneleditwearable.cpp
+++ b/indra/newview/llpaneleditwearable.cpp
@@ -1071,6 +1071,12 @@ void LLIncrementCofVersionResponder::error(U32 pStatus, const std::string& pReas
}
//static
+void LLPanelEditWearable::incrementCofVersion()
+{
+ incrementCofVersion(0);
+}
+
+//static
void LLPanelEditWearable::incrementCofVersion(S32 retries)
{
// Create a response handler
@@ -1125,7 +1131,10 @@ void LLPanelEditWearable::saveChanges(bool force_save_as)
gAgentWearables.saveWearable(mWearablePtr->getType(), index, TRUE, new_name);
}
- LLPanelEditWearable::incrementCofVersion(0);
+ if (gAgentAvatarp->isUsingServerBakes())
+ {
+ LLPanelEditWearable::incrementCofVersion(0);
+ }
}
void LLPanelEditWearable::revertChanges()