@@ -19,6 +19,7 @@ internal abstract class LineExecutor<T> : SimpleShapeToolExecutor where T : ILin
protected Color StrokeColor => toolbar!.StrokeColor.ToColor();
protected int StrokeWidth => toolViewModel!.ToolSize;
+
protected bool drawOnMask;
protected VecD curPos;
@@ -13,6 +13,8 @@ internal class VectorLineToolExecutor : LineExecutor<IVectorLineToolHandler>
private VecD startPoint;
private VecD endPoint;
+ protected override bool AlignToPixels => false;
protected override bool InitShapeData(IReadOnlyLineData? data)
{
if (data is null)