Merge branch 'hide-if-collapsed' of https://github.com/pythongosssss/ComfyUI

This commit is contained in:
comfyanonymous 2023-11-22 11:46:21 -05:00
commit 1ca4802e8c
1 changed files with 10 additions and 0 deletions

View File

@ -234,6 +234,7 @@ LGraphNode.prototype.addDOMWidget = function (name, type, element, options) {
}
const hidden =
node.flags?.collapsed ||
(!!options.hideOnZoom && app.canvas.ds.scale < 0.5) ||
widget.computedHeight <= 0 ||
widget.type === "converted-widget";
@ -291,6 +292,15 @@ LGraphNode.prototype.addDOMWidget = function (name, type, element, options) {
this.addCustomWidget(widget);
elementWidgets.add(this);
const collapse = this.collapse;
this.collapse = function() {
collapse.apply(this, arguments);
if(this.flags?.collapsed) {
element.hidden = true;
element.style.display = "none";
}
}
const onRemoved = this.onRemoved;
this.onRemoved = function () {
element.remove();