on Jan 20 · edited by Smirnov75
Owner
In this case, the issue is definitely that mixlab overrides the onDrawForeground method of other nodes. I consider this unacceptable. Moreover, mixlab only uses this method if it is defined in the prototype. This results in display issues for other nodes that rely on this method.
To fix this problem, the line in ui_mixlab.js
Go to your ComfyUI -> customNodes->comfyui-mixlab->web->javascript->ui_mixlab.js
From inside there do a searf rom const orig = node
should be replaced with:const orig = node.onDrawForeground ?? node.__proto__.onDrawForeground;
You can fix this yourself
Leave a Reply