Add seamless tiling support

This commit is contained in:
JeLuF
2023-05-25 00:16:14 +02:00
parent 3d7e16cfd9
commit 9dfa300083
6 changed files with 28 additions and 1 deletions

View File

@ -249,6 +249,14 @@ const TASK_MAPPING = {
readUI: () => clip_skip.checked,
parse: (val) => Boolean(val),
},
tiling: {
name: "Tiling",
setUI: (val) => {
tilingField.value = val
},
readUI: () => tilingField.value,
parse: (val) => val,
},
use_vae_model: {
name: "VAE model",
setUI: (use_vae_model) => {