We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d9bc1 commit f5a7865Copy full SHA for f5a7865
web/extensions/core/widgetInputs.js
@@ -159,9 +159,11 @@ app.registerExtension({
159
const r = origOnInputDblClick ? origOnInputDblClick.apply(this, arguments) : undefined;
160
161
const input = this.inputs[slot];
162
- if (!input.widget || !input[ignoreDblClick])// Not a widget input or already handled input
163
- {
164
- if (!(input.type in ComfyWidgets)) return r;//also Not a ComfyWidgets input (do nothing)
+ if (!input.widget || !input[ignoreDblClick]) {
+ // Not a widget input or already handled input
+ if (!(input.type in ComfyWidgets) && !(input.widget.config?.[0] instanceof Array)) {
165
+ return r; //also Not a ComfyWidgets input or combo (do nothing)
166
+ }
167
}
168
169
// Create a primitive node
0 commit comments