!2874 优化: 被冻结的实体不能被线性切割

pull/2763/MERGE
张子涵 3 months ago committed by ChenX
parent 28d28bda9c
commit 9bba2d6ed2

@ -37,7 +37,7 @@ export class LinearCutting implements Command
{
for (let ent of app.Database.ModelSpace.Entitys)
{
if (!ent.IsErase && ent.IsVisible && ent instanceof Board)
if (!ent.IsErase && ent.IsVisible && !ent.Freeze && ent instanceof Board)
brs.push(ent);
}
}

Loading…
Cancel
Save