diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfloatertools.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llpanelmediasettingsgeneral.cpp | 2 | 
2 files changed, 6 insertions, 3 deletions
| diff --git a/indra/newview/llfloatertools.cpp b/indra/newview/llfloatertools.cpp index e2b083a29b..f9bd5ada15 100644 --- a/indra/newview/llfloatertools.cpp +++ b/indra/newview/llfloatertools.cpp @@ -1523,7 +1523,9 @@ void LLFloaterTools::updateMediaSettings()      mMediaSettings[ base_key + std::string( LLPanelContents::TENTATIVE_SUFFIX ) ] = ! identical;      // Auto play -    value_bool = default_media_data.getAutoPlay(); +    //value_bool = default_media_data.getAutoPlay(); +	// set default to auto play TRUE -- angela  EXT-5172 +	value_bool = true;      struct functor_getter_auto_play : public LLSelectedTEGetFunctor< bool >      {  		functor_getter_auto_play(const LLMediaEntry& entry)	: mMediaEntry(entry) {}	 @@ -1534,7 +1536,8 @@ void LLFloaterTools::updateMediaSettings()                  if ( object->getTE(face) )                      if ( object->getTE(face)->getMediaData() )                          return object->getTE(face)->getMediaData()->getAutoPlay(); -            return mMediaEntry.getAutoPlay(); +            //return mMediaEntry.getAutoPlay(); set default to auto play TRUE -- angela  EXT-5172 +			return true;          };  		const LLMediaEntry &mMediaEntry; diff --git a/indra/newview/llpanelmediasettingsgeneral.cpp b/indra/newview/llpanelmediasettingsgeneral.cpp index 64a265219b..f601a8d51c 100644 --- a/indra/newview/llpanelmediasettingsgeneral.cpp +++ b/indra/newview/llpanelmediasettingsgeneral.cpp @@ -206,7 +206,7 @@ void LLPanelMediaSettingsGeneral::clearValues( void* userdata, bool editable)  {	  	LLPanelMediaSettingsGeneral *self =(LLPanelMediaSettingsGeneral *)userdata;  	self->mAutoLoop->clear(); -	self->mAutoPlay->setValue(LLSD(TRUE)); // set default value for auto play to true; +	self->mAutoPlay->clear();  	self->mAutoScale->clear();  	self->mAutoZoom ->clear();  	self->mCurrentURL->clear(); | 
