Move setWrap below clear in constructor.

This commit is contained in:
saurabhg772244
2025-02-14 17:51:17 +05:30
parent 6ca8f46d37
commit 0a1a112605

View File

@@ -50,10 +50,11 @@ export class SequenceDB implements DiagramDB {
this.apply = this.apply.bind(this);
this.parseBoxData = this.parseBoxData.bind(this);
this.parseMessage = this.parseMessage.bind(this);
this.setWrap(getConfig().wrap);
this.clear();
this.setWrap(getConfig().wrap);
this.LINETYPE = {
SOLID: 0,
DOTTED: 1,