diff --git a/src/modules/Editor.ts b/src/modules/Editor.ts index de0be4a..f5fc3ed 100644 --- a/src/modules/Editor.ts +++ b/src/modules/Editor.ts @@ -397,7 +397,7 @@ export class Editor { get isEmpty(): boolean { const { route, stickers } = this.dumpData(); - return (!route || route.length < 1) && (!stickers || stickers.length <= 0); + return (!route || route.length <= 1) && (!stickers || stickers.length <= 0); } get hasEmptyHistory(): boolean {