Fixed fill change type

This commit is contained in:
Krzysztof Krysiński 2025-06-12 12:51:48 +02:00
parent a34b98b6fd
commit 0dcf24032b

View File

@ -180,6 +180,7 @@ internal class VectorPathToolExecutor : UpdateableChangeExecutor, IPathExecutorF
VectorShapeChangeType changeType = name switch
{
nameof(IFillableShapeToolbar.Fill) => VectorShapeChangeType.Fill,
nameof(IFillableShapeToolbar.FillBrush) => VectorShapeChangeType.Fill,
nameof(IShapeToolbar.StrokeBrush) => VectorShapeChangeType.Stroke,
nameof(IShapeToolbar.ToolSize) => VectorShapeChangeType.Stroke,
nameof(IShapeToolbar.AntiAliasing) => VectorShapeChangeType.OtherVisuals,