diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-04-18 11:54:12 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-04-18 11:54:12 +0300 |
commit | 0a48d57884aeb6631d0b1c7574c02fb5f3141e39 (patch) | |
tree | 82bb599b78f985fa30d115aadc377d9dd47b94f9 /indra/newview/llviewerobject.h | |
parent | 5ddac01ef274285ed39ab2248382531b710fdb75 (diff) |
MAINT-1086 FIXED Cannot select a fully transparent object with Beacon Highlight
Diffstat (limited to 'indra/newview/llviewerobject.h')
-rw-r--r-- | indra/newview/llviewerobject.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llviewerobject.h b/indra/newview/llviewerobject.h index 1e8f3f4ec2..24fcf0517e 100644 --- a/indra/newview/llviewerobject.h +++ b/indra/newview/llviewerobject.h @@ -178,6 +178,8 @@ public: virtual BOOL isHUDAttachment() const { return FALSE; } virtual BOOL isTempAttachment() const; + virtual BOOL isHiglightedOrBeacon() const; + virtual void updateRadius() {}; virtual F32 getVObjRadius() const; // default implemenation is mDrawable->getRadius() @@ -388,7 +390,7 @@ public: // Create if necessary LLAudioSource *getAudioSource(const LLUUID& owner_id); - bool isAudioSource() {return mAudioSourcep != NULL;} + BOOL isAudioSource() const {return mAudioSourcep != NULL;} U8 getMediaType() const; void setMediaType(U8 media_type); |