From 142e8fff1940b2b1a828ee66389c1ee899cf8560 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Fri, 31 May 2013 21:31:07 -0400 Subject: [PATCH] Fix the issue reported by Beware Hax in which the group name text is missing from build floater. --- indra/newview/llpanelpermissions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llpanelpermissions.cpp b/indra/newview/llpanelpermissions.cpp index 326fb952d..40a79bcef 100644 --- a/indra/newview/llpanelpermissions.cpp +++ b/indra/newview/llpanelpermissions.cpp @@ -149,7 +149,8 @@ BOOL LLPanelPermissions::postBuild() childSetCommitCallback("clickaction",LLPanelPermissions::onCommitClickAction,this); childSetCommitCallback("search_check",LLPanelPermissions::onCommitIncludeInSearch,this); - mLabelGroupName = getChild("Group Name Proxy"); + mLabelGroupName = new LLNameBox("Group Name", getChild("Group Name Proxy")->getRect()); + addChild(mLabelGroupName); if (!gHippoGridManager->getCurrentGrid()->isSecondLife()) LFSimFeatureHandler::instance().setSupportsExportCallback(boost::bind(&LLPanelPermissions::refresh, this));