diff --git a/src/chrono2/graph/Graph.ts b/src/chrono2/graph/Graph.ts index 42054593..6d5358d2 100644 --- a/src/chrono2/graph/Graph.ts +++ b/src/chrono2/graph/Graph.ts @@ -108,7 +108,7 @@ export class ChronoGraph extends Base implements Owner { this.nextTransaction = [] this.mark() - this.sweep() + // this.sweep() } //endregion @@ -250,6 +250,8 @@ export class ChronoGraph extends Base implements Owner { } else { this.frozen = true } + + this.sweep() }