Easy2D v1.0.3

This commit is contained in:
werelone 2017-09-19 00:46:45 +08:00
parent 740201fded
commit 471ee23c3d
1 changed files with 1 additions and 2 deletions

View File

@ -22,7 +22,6 @@ void Layer::setBlock(bool block)
bool Layer::_exec(bool active)
{
BatchNode::_exec(active);
// 若图层阻塞消息,则永远取得画面焦点
return m_bBlock;
return BatchNode::_exec(active) || m_bBlock;
}