Merge pull request #1304 from JeLuF/dndfix

Remove warning when reusing settings - Fixes #1290
This commit is contained in:
cmdr2 2023-05-26 15:24:56 +05:30 committed by GitHub
commit 0990d8fc4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,6 +43,7 @@ const TASK_MAPPING = {
name: "Prompt",
setUI: (prompt) => {
promptField.value = prompt
promptField.dispatchEvent(new Event("input"))
},
readUI: () => promptField.value,
parse: (val) => val,
@ -79,6 +80,7 @@ const TASK_MAPPING = {
if (!widthField.value) {
widthField.value = oldVal
}
widthField.dispatchEvent(new Event("change"))
},
readUI: () => parseInt(widthField.value),
parse: (val) => parseInt(val),
@ -91,6 +93,7 @@ const TASK_MAPPING = {
if (!heightField.value) {
heightField.value = oldVal
}
heightField.dispatchEvent(new Event("change"))
},
readUI: () => parseInt(heightField.value),
parse: (val) => parseInt(val),