Commit a6a5bfb1 authored by EllangoK's avatar EllangoK
Browse files

deepcopy pc.styles, allows for multiple style axis

parent 9beb794e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ def apply_vae(p, x, xs):


def apply_styles(p: StableDiffusionProcessingTxt2Img, x: str, _):
    p.styles = x.split(',')
    p.styles.extend(x.split(','))


def format_value_add_label(p, opt, x):
@@ -533,6 +533,7 @@ class Script(scripts.Script):
                return Processed(p, [], p.seed, "")

            pc = copy(p)
            pc.styles = pc.styles[:]
            x_opt.apply(pc, x, xs)
            y_opt.apply(pc, y, ys)
            z_opt.apply(pc, z, zs)