Fix group names on certain group profiles sometimes never Loading in

This commit is contained in:
Liru Færs
2019-11-16 10:47:13 -05:00
parent 78fbc214ca
commit 89abfe6f86
3 changed files with 20 additions and 13 deletions

View File

@@ -86,7 +86,9 @@ void LLNameBox::initFromXML(LLXMLNodePtr node, LLView* parent)
node->getAttributeString("initial_value", mInitialValue);
setText(mInitialValue);
node->getAttribute_bool("rlv_sensitive", mRLVSensitive);
node->getAttribute_bool("is_group", mIsGroup);
bool is_group;
node->getAttribute_bool("is_group", is_group);
setIsGroup(is_group);
}
// static