mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-14 04:19:12 +00:00
Fix bug in FilterManagerImpl::begin(), it was not checking the
new Document::isMaskVisible() flag.
This commit is contained in:
parent
8e5c950df8
commit
e6bfe37a7c
@ -102,7 +102,7 @@ void FilterManagerImpl::setTarget(int target)
|
||||
void FilterManagerImpl::begin()
|
||||
{
|
||||
m_row = 0;
|
||||
m_mask = m_document->getMask();
|
||||
m_mask = (m_document->isMaskVisible() ? m_document->getMask(): NULL);
|
||||
|
||||
updateMask(m_mask, m_src);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user