mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-03-13 14:21:20 +00:00
Fix UI annoyance with multiline textboxes sometimes getting stuck.
This commit is contained in:
parent
e6aa9f0c0a
commit
e615d40ca1
@ -212,6 +212,17 @@ function onObjectInfo(json) {
|
||||
ccc.parentNode.appendChild(w.input_div);
|
||||
|
||||
w = this.addCustomWidget(w);
|
||||
canvas.onDrawBackground = function() {
|
||||
for (let n in graph._nodes) {
|
||||
n = graph._nodes[n];
|
||||
for (let w in n.widgets) {
|
||||
let wid = n.widgets[w];
|
||||
if (Object.hasOwn(wid, 'input_div')) {
|
||||
wid.input_div.hidden = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// w = this.addWidget("text", x, "", function(v){}, { multiline:true } );
|
||||
console.log(w, this);
|
||||
this._widgets += [w]
|
||||
|
Loading…
Reference in New Issue
Block a user