diff --git a/Memola/Canvas/Contexts/GraphicContext.swift b/Memola/Canvas/Contexts/GraphicContext.swift index 101cd77..e07f3aa 100644 --- a/Memola/Canvas/Contexts/GraphicContext.swift +++ b/Memola/Canvas/Contexts/GraphicContext.swift @@ -251,9 +251,6 @@ extension GraphicContext { func appendStroke(with point: CGPoint) { guard let currentStroke = currentElement?.stroke() else { return } - guard let currentPoint, point.distance(to: currentPoint) > currentStroke.thickness * currentStroke.penStyle.stepRate else { - return - } currentStroke.append(to: point) self.currentPoint = point }