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);
|
node->getAttributeString("initial_value", mInitialValue);
|
||||||
setText(mInitialValue);
|
setText(mInitialValue);
|
||||||
node->getAttribute_bool("rlv_sensitive", mRLVSensitive);
|
node->getAttribute_bool("rlv_sensitive", mRLVSensitive);
|
||||||
bool is_group;
|
if (node->hasAttribute("is_group"))
|
||||||
node->getAttribute_bool("is_group", is_group);
|
{
|
||||||
setIsGroup(is_group);
|
bool is_group;
|
||||||
|
node->getAttribute_bool("is_group", is_group);
|
||||||
|
setIsGroup(is_group);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
|||||||
Reference in New Issue
Block a user