Fix careless mistake breaking item properties floater
This commit is contained in:
@@ -86,9 +86,12 @@ void LLNameBox::initFromXML(LLXMLNodePtr node, LLView* parent)
|
||||
node->getAttributeString("initial_value", mInitialValue);
|
||||
setText(mInitialValue);
|
||||
node->getAttribute_bool("rlv_sensitive", mRLVSensitive);
|
||||
bool is_group;
|
||||
node->getAttribute_bool("is_group", is_group);
|
||||
setIsGroup(is_group);
|
||||
if (node->hasAttribute("is_group"))
|
||||
{
|
||||
bool is_group;
|
||||
node->getAttribute_bool("is_group", is_group);
|
||||
setIsGroup(is_group);
|
||||
}
|
||||
}
|
||||
|
||||
// static
|
||||
|
||||
Reference in New Issue
Block a user