diff options
Diffstat (limited to 'indra/llui')
| -rw-r--r-- | indra/llui/llfloater.cpp | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 845203b420..a35d279500 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -878,9 +878,11 @@ void LLFloater::setSnappedTo(const LLView* snap_view)  	else  	{  		//RN: assume it's a floater as it must be a sibling to our parent floater -		LLFloater* floaterp = (LLFloater*)snap_view; -		 -		setSnapTarget(floaterp->getHandle()); +		const LLFloater* floaterp = dynamic_cast<const LLFloater*>(snap_view); +		if (floaterp) +		{ +			setSnapTarget(floaterp->getHandle()); +		}  	}  } | 
