Commit f299018a LN

线体宽度bug修改

1 个父辈 734a0335
......@@ -604,15 +604,19 @@ namespace TSA_V
return;
}
if (!IOBase.NoLine && board.LineWidth <= 0)
if (!IOBase.NoLine)
{
if (board.LineWidth <= 0)
{
MessageBox.Show(ResourceCulture.GetString(ResourceCulture.WriteLineWidth, "请输入线体宽度"));
txtLineWidth.Focus();
return;
}
}
else
{
board.LineWidth = 1;
}
if (picBoard.Image == null)
{
//MessageBox.Show("请添加程序图片");
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!