diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-10-24 23:35:28 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-10-24 23:35:28 +0300 |
commit | 4a1397c621eec2deb90d4953762fea6187c0a270 (patch) | |
tree | 96e965f8f01ff7e72728329a762bff6668d802a3 /indra/newview/llmaterialeditor.h | |
parent | 4b37414dc0963a9db344c493055f501265f4e59a (diff) |
SL-18414 Smarter material editor's cancel for overrides
Diffstat (limited to 'indra/newview/llmaterialeditor.h')
-rw-r--r-- | indra/newview/llmaterialeditor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llmaterialeditor.h b/indra/newview/llmaterialeditor.h index 23cb32aacf..60907b18ba 100644 --- a/indra/newview/llmaterialeditor.h +++ b/indra/newview/llmaterialeditor.h @@ -276,5 +276,8 @@ private: // if true, this instance is live instance editing overrides bool mIsOverride = false; + // local id, texture ids per face for object overrides + // for "cancel" support + std::map<U32, uuid_vec_t> mObjectOverridesSavedValues; }; |