mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-16 23:42:57 +00:00
Don't use fixes for line brush when the brush size = 1
This commit is contained in:
parent
7355d0e2db
commit
b95f96f645
@ -127,7 +127,8 @@ doc::AlgoLineWithAlgoPixel Intertwine::getLineAlgo(ToolLoop* loop,
|
||||
const Stroke::Pt& b)
|
||||
{
|
||||
bool needsFixForLineBrush = false;
|
||||
if (loop->getBrush()->type() == kLineBrushType) {
|
||||
if ((loop->getBrush()->type() == kLineBrushType) &&
|
||||
(a.size > 1.0 || b.size > 1.0)) {
|
||||
if ((a.angle != 0.0f || b.angle != 0.0f) &&
|
||||
(a.angle != b.angle)) {
|
||||
needsFixForLineBrush = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user