diff options
| -rw-r--r-- | indra/newview/llcolorswatch.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/newview/llcolorswatch.cpp b/indra/newview/llcolorswatch.cpp index d079da3b36..b83e4fe830 100644 --- a/indra/newview/llcolorswatch.cpp +++ b/indra/newview/llcolorswatch.cpp @@ -338,7 +338,11 @@ void LLColorSwatchCtrl::showPicker(BOOL take_focus)  	if (!pickerp)  	{  		pickerp = new LLFloaterColorPicker(this, mCanApplyImmediately); -		//gFloaterView->getParentFloater(this)->addDependentFloater(pickerp); +		LLFloater* parent = gFloaterView->getParentFloater(this); +		if (parent) +		{ +			parent->addDependentFloater(pickerp); +		}  		mPickerHandle = pickerp->getHandle();  	} | 
