Skip to content
Snippets Groups Projects
Commit b1dd2f30 authored by Richard Linden's avatar Richard Linden
Browse files

EXT-5515 - Allow resizing on left and lower left of nearby media popup

parent f6079c93
No related branches found
No related tags found
No related merge requests found
......@@ -136,9 +136,10 @@ BOOL LLResizeHandle::handleHover(S32 x, S32 y, MASK mask)
if( resizing_view )
{
// undock floater when user resize it
if (((LLFloater*)getParent())->isDocked())
LLFloater* floater_parent = dynamic_cast<LLFloater*>(getParent());
if (floater_parent && floater_parent->isDocked())
{
((LLFloater*)getParent())->setDocked(false, false);
floater_parent->setDocked(false, false);
}
// Resize the parent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment