mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-19 10:53:29 +00:00
Handle collapsing to hide element
This commit is contained in:
parent
6ff06fa796
commit
ab7d4f7848
@ -233,6 +233,7 @@ LGraphNode.prototype.addDOMWidget = function (name, type, element, options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const hidden =
|
const hidden =
|
||||||
|
node.flags?.collapsed ||
|
||||||
(!!options.hideOnZoom && app.canvas.ds.scale < 0.5) ||
|
(!!options.hideOnZoom && app.canvas.ds.scale < 0.5) ||
|
||||||
widget.computedHeight <= 0 ||
|
widget.computedHeight <= 0 ||
|
||||||
widget.type === "converted-widget";
|
widget.type === "converted-widget";
|
||||||
@ -290,6 +291,15 @@ LGraphNode.prototype.addDOMWidget = function (name, type, element, options) {
|
|||||||
this.addCustomWidget(widget);
|
this.addCustomWidget(widget);
|
||||||
elementWidgets.add(this);
|
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;
|
const onRemoved = this.onRemoved;
|
||||||
this.onRemoved = function () {
|
this.onRemoved = function () {
|
||||||
element.remove();
|
element.remove();
|
||||||
|
Loading…
Reference in New Issue
Block a user