This commit is contained in:
Wiesław Šoltés 2015-08-05 22:29:30 +02:00
Родитель df2f3591be
Коммит fcb8fafc00
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -53,8 +53,7 @@ namespace SpiroNet.Editor
{
if (_needToClose)
{
var close = string.Format("Z");
_sb.Append(close);
_sb.Append("Z");
_needToClose = false;
}
return _sb.ToString();
@ -79,8 +78,7 @@ namespace SpiroNet.Editor
{
if (_needToClose)
{
var close = string.Format("Z");
_sb.AppendLine(close);
_sb.AppendLine("Z");
}
var move = string.Format("M {0},{1}", Format(x), Format(y));