diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-10-31 20:12:53 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-10-31 20:12:53 +0200 |
commit | 094a8876d6e030b5dc618ea28250e15022030c78 (patch) | |
tree | def08dcfc7baa41eb445d2f9a8ed54f5daed6d14 /indra/newview/llmaterialeditor.h | |
parent | 35d4124b5eb3d412643124993b4fa8c09f3f747c (diff) |
SL-18446 Material override arrival filtering
Diffstat (limited to 'indra/newview/llmaterialeditor.h')
-rw-r--r-- | indra/newview/llmaterialeditor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llmaterialeditor.h b/indra/newview/llmaterialeditor.h index 87c94041d3..749cd4cd54 100644 --- a/indra/newview/llmaterialeditor.h +++ b/indra/newview/llmaterialeditor.h @@ -107,6 +107,7 @@ public: void saveLiveValues(); // for restoration on cancel static void updateLive(); + static void updateLive(const LLUUID &object_id, S32 te); static void loadLive(); static void loadObjectSave(); @@ -283,8 +284,11 @@ private: // if true, this instance is live instance editing overrides bool mIsOverride = false; + bool mOverrideInProgress = false; // local id, texture ids per face for object overrides // for "cancel" support + static LLUUID mOverrideObjectId; // static to avoid searching for the floater + static S32 mOverrideObjectTE; std::map<U32, uuid_vec_t> mObjectOverridesSavedValues; boost::signals2::connection mSelectionUpdateSlot; }; |