Skip state check hook on first load (#3915)
This commit is contained in:
parent
086ac75228
commit
24b969d3da
|
@ -173,9 +173,11 @@ export class ChangeTracker {
|
||||||
const onNodeAdded = LiteGraph.LGraph.prototype.onNodeAdded;
|
const onNodeAdded = LiteGraph.LGraph.prototype.onNodeAdded;
|
||||||
LiteGraph.LGraph.prototype.onNodeAdded = function () {
|
LiteGraph.LGraph.prototype.onNodeAdded = function () {
|
||||||
const v = onNodeAdded?.apply(this, arguments);
|
const v = onNodeAdded?.apply(this, arguments);
|
||||||
const ct = changeTracker();
|
if (!app?.configuringGraph) {
|
||||||
if (!ct.isOurLoad) {
|
const ct = changeTracker();
|
||||||
ct.checkState();
|
if (!ct.isOurLoad) {
|
||||||
|
ct.checkState();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return v;
|
return v;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue