mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-08-16 19:13:07 +02:00
Add seamless tiling support
This commit is contained in:
@ -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) => {
|
||||
|
Reference in New Issue
Block a user