diff options
author | Nyx Linden <nyx@lindenlab.com> | 2013-06-21 21:21:57 -0400 |
---|---|---|
committer | Nyx Linden <nyx@lindenlab.com> | 2013-06-21 21:21:57 -0400 |
commit | 01ffa6788793cdecff313b704422f0e814452489 (patch) | |
tree | d40eb270819aa23207653f9aec6fbd11551c8c3a /indra/newview/llviewerwearable.h | |
parent | 4ffc162492a3fe882af0899ba70e835c80367d09 (diff) |
SH-4240 FIX Users can set their hover height to 0
Adjusted the startup conditions, and relogging should apply the enforcement
as appropriate now. Note that this affects the startup enforcement and should
re-test the macro avatar loading bug.
Diffstat (limited to 'indra/newview/llviewerwearable.h')
-rw-r--r-- | indra/newview/llviewerwearable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewerwearable.h b/indra/newview/llviewerwearable.h index 047b2ce143..ef8c29323e 100644 --- a/indra/newview/llviewerwearable.h +++ b/indra/newview/llviewerwearable.h @@ -68,8 +68,8 @@ public: void setParamsToDefaults(); void setTexturesToDefaults(); - void setVolitile(BOOL volitle) { mVolitle = volitle; } // TRUE when doing preview renders, some updates will be suppressed. - BOOL getVolitile() { return mVolitle; } + void setVolatile(BOOL is_volatile) { mVolatile = is_volatile; } // TRUE when doing preview renders, some updates will be suppressed. + BOOL getVolatile() { return mVolatile; } /*virtual*/ LLUUID getDefaultTextureImageID(LLAvatarAppearanceDefines::ETextureIndex index) const; @@ -98,7 +98,7 @@ protected: LLAssetID mAssetID; LLTransactionID mTransactionID; - BOOL mVolitle; // True when rendering preview images. Can suppress some updates. + BOOL mVolatile; // True when rendering preview images. Can suppress some updates. LLUUID mItemID; // ID of the inventory item in the agent's inventory }; |