Skip to content

Commit

Permalink
fix not collapsed input and output type values
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekPet committed Oct 1, 2024
1 parent 18e8eb0 commit 99eb7b1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions IDENode/js/ide_node.js
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,8 @@ app.registerExtension({
nodeType.prototype.onDrawForeground = function (ctx) {
const r = onDrawForeground?.apply?.(this, arguments);

if (this.flags?.collapsed) return r;

if (this?.outputs?.length) {
for (let o = 0; o < this.outputs.length; o++) {
const { name, type } = this.outputs[o];
Expand Down

0 comments on commit 99eb7b1

Please sign in to comment.