Update CubicBezierToolViewModel.cs

This commit is contained in:
Wiesław Šoltés 2022-11-22 11:10:51 +01:00
Родитель d1a08f1bca
Коммит bca39554f5
1 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -136,9 +136,13 @@ public partial class CubicBezierToolViewModel : ViewModelBase, IEditorTool
_cubicBezier.Point3 = result;
}
editor.Project.CurrentContainer.WorkingLayer.Shapes = editor.Project.CurrentContainer.WorkingLayer.Shapes.Remove(_cubicBezier);
Finalize(_cubicBezier);
editor.Project.AddShape(editor.Project.CurrentContainer.CurrentLayer, _cubicBezier);
if (_cubicBezier is { })
{
editor.Project.CurrentContainer.WorkingLayer.Shapes =
editor.Project.CurrentContainer.WorkingLayer.Shapes.Remove(_cubicBezier);
Finalize(_cubicBezier);
editor.Project.AddShape(editor.Project.CurrentContainer.CurrentLayer, _cubicBezier);
}
Reset();
}