deepcopy pc.styles, allows for multiple style axis
This commit is contained in:
parent
9beb794e0b
commit
a6a5bfb155
1 changed files with 2 additions and 1 deletions
|
@ -123,7 +123,7 @@ def apply_vae(p, x, xs):
|
||||||
|
|
||||||
|
|
||||||
def apply_styles(p: StableDiffusionProcessingTxt2Img, x: str, _):
|
def apply_styles(p: StableDiffusionProcessingTxt2Img, x: str, _):
|
||||||
p.styles = x.split(',')
|
p.styles.extend(x.split(','))
|
||||||
|
|
||||||
|
|
||||||
def format_value_add_label(p, opt, x):
|
def format_value_add_label(p, opt, x):
|
||||||
|
@ -533,6 +533,7 @@ class Script(scripts.Script):
|
||||||
return Processed(p, [], p.seed, "")
|
return Processed(p, [], p.seed, "")
|
||||||
|
|
||||||
pc = copy(p)
|
pc = copy(p)
|
||||||
|
pc.styles = pc.styles[:]
|
||||||
x_opt.apply(pc, x, xs)
|
x_opt.apply(pc, x, xs)
|
||||||
y_opt.apply(pc, y, ys)
|
y_opt.apply(pc, y, ys)
|
||||||
z_opt.apply(pc, z, zs)
|
z_opt.apply(pc, z, zs)
|
||||||
|
|
Loading…
Reference in a new issue