diff --git a/src/editor/core/draw/Draw.ts b/src/editor/core/draw/Draw.ts index c2da99d..7c32093 100644 --- a/src/editor/core/draw/Draw.ts +++ b/src/editor/core/draw/Draw.ts @@ -1823,7 +1823,7 @@ export class Draw { this.waterMark.render(ctx) } // 绘制空白占位符 - if (this.elementList.length <= 1) { + if (this.elementList.length <= 1 && !this.elementList[0]?.listId) { this.placeholder.render(ctx) } }