mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
Fix opacity value for custom brushes
This commit is contained in:
parent
4984a48918
commit
782aa72faf
@ -136,8 +136,10 @@ public:
|
||||
}
|
||||
|
||||
// Ignore opacity for these inks
|
||||
if (!tools::inkHasOpacity(m_toolPref.ink()))
|
||||
if (!tools::inkHasOpacity(m_toolPref.ink()) &&
|
||||
m_brush->type() != kImageBrushType) {
|
||||
m_opacity = 255;
|
||||
}
|
||||
}
|
||||
|
||||
// IToolLoop interface
|
||||
|
Loading…
Reference in New Issue
Block a user