Update EllipseToolViewModel.cs

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

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

@ -229,8 +229,8 @@ public partial class EllipseToolViewModel : ViewModelBase, IEditorTool
var editor = ServiceProvider.GetService<ProjectEditorViewModel>();
if (editor is { }
&& editor.Project?.CurrentContainer?.HelperLayer is { }
&& _ellipse is { }
&& editor.PageState?.HelperStyle is { })
&& editor.PageState?.HelperStyle is { }
&& _ellipse is { } )
{
_selection = new EllipseSelection(
ServiceProvider,
@ -238,7 +238,7 @@ public partial class EllipseToolViewModel : ViewModelBase, IEditorTool
_ellipse,
editor.PageState.HelperStyle);
_selection?.ToStateBottomRight();
_selection.ToStateBottomRight();
}
}