diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llscrollingpanelparam.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/llscrollingpanelparam.cpp b/indra/newview/llscrollingpanelparam.cpp index 5310ababba..05b82ba967 100644 --- a/indra/newview/llscrollingpanelparam.cpp +++ b/indra/newview/llscrollingpanelparam.cpp @@ -69,6 +69,11 @@ LLScrollingPanelParam::LLScrollingPanelParam( const LLPanel::Params& panel_param  	mHintMin->setAllowsUpdates( FALSE );  	mHintMax->setAllowsUpdates( FALSE ); +	std::string min_name = LLTrans::getString(param->getMinDisplayName()); +	std::string max_name = LLTrans::getString(param->getMaxDisplayName()); +	getChild<LLUICtrl>("min param text")->setValue(min_name); +	getChild<LLUICtrl>("max param text")->setValue(max_name); +  	LLButton* less = getChild<LLButton>("less");  	if (less)  	{ | 
