Browse Source

Merge branch 'fix-node-bounding' of https://github.com/jn-jairo/ComfyUI

pull/1777/head
comfyanonymous 1 year ago
parent
commit
88ceeb3f29
  1. 2
      web/lib/litegraph.core.js

2
web/lib/litegraph.core.js

@ -3796,7 +3796,7 @@
out = out || new Float32Array(4); out = out || new Float32Array(4);
out[0] = this.pos[0] - 4; out[0] = this.pos[0] - 4;
out[1] = this.pos[1] - LiteGraph.NODE_TITLE_HEIGHT; out[1] = this.pos[1] - LiteGraph.NODE_TITLE_HEIGHT;
out[2] = this.size[0] + 4; out[2] = this.flags.collapsed ? (this._collapsed_width || LiteGraph.NODE_COLLAPSED_WIDTH) : this.size[0] + 4;
out[3] = this.flags.collapsed ? LiteGraph.NODE_TITLE_HEIGHT : this.size[1] + LiteGraph.NODE_TITLE_HEIGHT; out[3] = this.flags.collapsed ? LiteGraph.NODE_TITLE_HEIGHT : this.size[1] + LiteGraph.NODE_TITLE_HEIGHT;
if (this.onBounding) { if (this.onBounding) {

Loading…
Cancel
Save