closed #3162: fix indent.

This commit is contained in:
boyu0 2013-12-06 18:23:31 +08:00
parent 4d0e3dbd8d
commit 0e94d4f3b8
1 changed files with 2 additions and 4 deletions

View File

@ -1490,8 +1490,7 @@ void Node::disableCascadeOpacity()
{
_displayedOpacity = _realOpacity;
_children.forEach([this](Node* child)
{
_children.forEach([this](Node* child){
child->disableCascadeOpacity();
});
}
@ -1564,8 +1563,7 @@ void Node::updateCascadeColor()
void Node::disableCascadeColor()
{
_children.forEach([this](Node* child)
{
_children.forEach([this](Node* child){
child->disableCascadeColor();
});
}