Merge branch 'feature/clipspace' into feature/maskpainting

This commit is contained in:
ltdrdata 2023-04-23 21:23:25 +09:00
commit f8e6adac06

View File

@ -172,8 +172,8 @@ export class ComfyApp {
ComfyApp.clipspace.widgets.forEach(({ type, name, value }) => {
const prop = Object.values(this.widgets).find(obj => obj.type === type && obj.name === name);
if (prop) {
prop.value = value;
}
prop.value = value;
}
});
}
@ -204,6 +204,7 @@ export class ComfyApp {
}
}
}
this.trigger('changed');
}
}
}