We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218b0aa commit c4b6c9fCopy full SHA for c4b6c9f
src/scripts/changeTracker.js
@@ -190,9 +190,11 @@ export class ChangeTracker {
190
const onNodeAdded = LiteGraph.LGraph.prototype.onNodeAdded;
191
LiteGraph.LGraph.prototype.onNodeAdded = function () {
192
const v = onNodeAdded?.apply(this, arguments);
193
- const ct = changeTracker();
194
- if (!ct.isOurLoad) {
195
- ct.checkState();
+ if (!app?.configuringGraph) {
+ const ct = changeTracker();
+ if (!ct.isOurLoad) {
196
+ ct.checkState();
197
+ }
198
}
199
return v;
200
};
0 commit comments