diff options
author | Cosmic Linden <cosmic@lindenlab.com> | 2023-07-28 17:29:09 -0700 |
---|---|---|
committer | Cosmic Linden <cosmic@lindenlab.com> | 2023-08-11 16:31:00 -0700 |
commit | a5d318567cc5c3e8f2f86fce1132f5883014e14e (patch) | |
tree | 093b6d2dbc04c96914a7a462e35102fc2818fed1 /indra/newview/llpanelface.h | |
parent | 7bf6103ad95c281c2ed680c9eb9b07cc584ddc91 (diff) |
SL-20024: (WIP) (untested) Fix GLTF material permissions in some more edge cases
Diffstat (limited to 'indra/newview/llpanelface.h')
-rw-r--r-- | indra/newview/llpanelface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llpanelface.h b/indra/newview/llpanelface.h index e2d9f65e58..d737665ad0 100644 --- a/indra/newview/llpanelface.h +++ b/indra/newview/llpanelface.h @@ -35,6 +35,8 @@ #include "lltextureentry.h" #include "llselectmgr.h" +#include <memory> + class LLButton; class LLCheckBoxCtrl; class LLColorSwatchCtrl; @@ -51,6 +53,8 @@ class LLMaterialID; class LLMediaCtrl; class LLMenuButton; +class PBRPickerItemListener; + // Represents an edit for use in replicating the op across one or more materials in the selection set. // // The apply function optionally performs the edit which it implements @@ -503,6 +507,8 @@ private: static Selection sMaterialOverrideSelection; + std::unique_ptr<PBRPickerItemListener> mInventoryListener; + public: #if defined(DEF_GET_MAT_STATE) #undef DEF_GET_MAT_STATE |