diff options
Diffstat (limited to 'indra/newview/llpanelgroupinvite.cpp')
| -rw-r--r-- | indra/newview/llpanelgroupinvite.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/indra/newview/llpanelgroupinvite.cpp b/indra/newview/llpanelgroupinvite.cpp index 00dd206571..36bd5d9b77 100644 --- a/indra/newview/llpanelgroupinvite.cpp +++ b/indra/newview/llpanelgroupinvite.cpp @@ -301,11 +301,13 @@ void LLPanelGroupInvite::impl::callbackClickAdd(void* userdata)  		//Soon the avatar picker will be embedded into this panel  		//instead of being it's own separate floater.  But that is next week.  		//This will do for now. -jwolk May 10, 2006 +        LLView * button = panelp->findChild<LLButton>("add_button"); +        LLFloater * root_floater = gFloaterView->getParentFloater(panelp);  		LLFloaterAvatarPicker* picker = LLFloaterAvatarPicker::show( -			boost::bind(impl::callbackAddUsers, _1, panelp->mImplementation), TRUE); +			boost::bind(impl::callbackAddUsers, _1, panelp->mImplementation), TRUE, FALSE, FALSE, root_floater->getName(), button);  		if (picker)  		{ -			gFloaterView->getParentFloater(panelp)->addDependentFloater(picker); +			root_floater->addDependentFloater(picker);  		}  	}  } | 
