diff options
author | Rick Pasetto <rick@lindenlab.com> | 2009-12-14 17:39:24 -0800 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2009-12-14 17:39:24 -0800 |
commit | c0eb697a53b22e266fa5437edde59395afcd2c7b (patch) | |
tree | ab616ff434982fbeb7fa186cd6f0fb71a3ebebf5 /indra/newview/llvovolume.cpp | |
parent | a38629685538099cfa62fab4a8a5fb2e2bc94f60 (diff) |
Change LLViewerMedia::isInterestingEnough() to also check selection
If the object is in the selection, its interesting. Load its media data
ASAP.
Conceptually reviewed by monroe
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 801bd90423..d24edacd13 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -139,7 +139,7 @@ public: } virtual bool isInterestingEnough() const { - return LLViewerMedia::isInterestingEnough(mObject->getID(), getMediaInterest()); + return LLViewerMedia::isInterestingEnough(mObject, getMediaInterest()); } virtual std::string getCapabilityUrl(const std::string &name) const |