diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-06-11 12:33:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 12:33:53 -0400 |
commit | e92689063bdbe34907348a12f1db39bc81132783 (patch) | |
tree | 3d7b76e4f82fbb147e6c07f104fb85c55246fd99 /indra/newview/llvoavatarself.cpp | |
parent | f3bfc13f7957a5f142871bddc57d63cd08595ad9 (diff) | |
parent | b5546377b0aa2482756b1dad4258659edc630c3b (diff) |
Merge pull request #1697 from secondlife/lua-bradfix
Merge promoted Featurettes + Brad's GitHub Windows build workaround.
Diffstat (limited to 'indra/newview/llvoavatarself.cpp')
-rw-r--r-- | indra/newview/llvoavatarself.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 38742c9c64..0a13b7d309 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -1066,7 +1066,7 @@ void LLVOAvatarSelf::updateAttachmentVisibility(U32 camera_mode) switch (camera_mode) { case CAMERA_MODE_MOUSELOOK: - if (LLVOAvatar::sVisibleInFirstPerson && attachment->getVisibleInFirstPerson()) + if ((LLVOAvatar::sVisibleInFirstPerson && attachment->getVisibleInFirstPerson()) || gPipeline.mHeroProbeManager.isMirrorPass()) { attachment->setAttachmentVisibility(TRUE); } |