Update CubicBezierToolViewModel.cs

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

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

@ -136,7 +136,7 @@ public partial class CubicBezierToolViewModel : ViewModelBase, IEditorTool
_cubicBezier.Point3 = result;
}
if (_cubicBezier is { })
if (editor.Project.CurrentContainer?.WorkingLayer is { } && _cubicBezier is { })
{
editor.Project.CurrentContainer.WorkingLayer.Shapes =
editor.Project.CurrentContainer.WorkingLayer.Shapes.Remove(_cubicBezier);