Fix freehand quick capture

This commit is contained in:
Jaex 2016-08-03 09:54:00 +03:00
parent d94e714479
commit 664b8d1889

View file

@ -163,7 +163,8 @@ public bool IsCurrentShapeTypeRegion
{
get
{
return CurrentShapeType == ShapeType.RegionRectangle || CurrentShapeType == ShapeType.RegionRoundedRectangle || CurrentShapeType == ShapeType.RegionEllipse;
return CurrentShapeType == ShapeType.RegionRectangle || CurrentShapeType == ShapeType.RegionRoundedRectangle || CurrentShapeType == ShapeType.RegionEllipse ||
CurrentShapeType == ShapeType.RegionFreehand;
}
}