Add spellcheck option to Multiline widget, add Interrupt Queue keybind (#267)

* Add spellcheck option to Multiline widget and set to false by default

* Add Queue Interrupt Keybind

* Update keybinds.ts

Fixed indentation
This commit is contained in:
Alistor
2024-07-30 17:34:54 -04:00
committed by GitHub
parent 4462dabc63
commit 7d2d6df57b
2 changed files with 9 additions and 1 deletions

View File

@@ -313,6 +313,7 @@ function addMultilineWidget(node, name, opts, app) {
inputEl.className = 'comfy-multiline-input'
inputEl.value = opts.defaultVal
inputEl.placeholder = opts.placeholder || name
inputEl.spellcheck = opts.spellcheck || false
const widget = node.addDOMWidget(name, 'customtext', inputEl, {
getValue() {