diff options
author | Rider Linden <rider@lindenlab.com> | 2018-08-15 17:33:37 +0000 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2018-08-15 17:33:37 +0000 |
commit | 7f71083f9e92339ac69e26b6c3dbf8d7556b07f8 (patch) | |
tree | f3433041bc84b95cea36f5868ab03fabab1cf338 /indra/llinventory | |
parent | 26514a0c807d9c07267c1cd445c2dd0305cb958c (diff) | |
parent | 584fec695bc8d6bafc38ff6ed3b435f133fdca2b (diff) |
Merged in andreykproductengine/maint-eep (pull request #48)
MAINT-8952 EEP 'uncompress' day tracks before editing
Diffstat (limited to 'indra/llinventory')
-rw-r--r-- | indra/llinventory/llsettingsdaycycle.cpp | 7 | ||||
-rw-r--r-- | indra/llinventory/llsettingsdaycycle.h | 1 |
2 files changed, 2 insertions, 6 deletions
diff --git a/indra/llinventory/llsettingsdaycycle.cpp b/indra/llinventory/llsettingsdaycycle.cpp index ea57c8987f..4a99be0c4b 100644 --- a/indra/llinventory/llsettingsdaycycle.cpp +++ b/indra/llinventory/llsettingsdaycycle.cpp @@ -366,12 +366,7 @@ bool LLSettingsDay::initialize(bool validate_frames) } } } - - // Build clone since: - // - can use settings from "used" multiple times - // - settings can reuse LLSDs they were initialized from - // - LLSDs are 'smart' and can reuse them self multiple times - mDayTracks[i][keyframe] = setting->buildDerivedClone(); + mDayTracks[i][keyframe] = setting; } } } diff --git a/indra/llinventory/llsettingsdaycycle.h b/indra/llinventory/llsettingsdaycycle.h index 974ca8660d..0ee5ce3e0b 100644 --- a/indra/llinventory/llsettingsdaycycle.h +++ b/indra/llinventory/llsettingsdaycycle.h @@ -81,6 +81,7 @@ public: bool initialize(bool validate_frames = false); virtual ptr_t buildClone() = 0; + virtual ptr_t buildDeepCloneAndUncompress() = 0; virtual LLSD getSettings() const SETTINGS_OVERRIDE; virtual LLSettingsType::type_e getSettingsTypeValue() const SETTINGS_OVERRIDE { return LLSettingsType::ST_DAYCYCLE; } |