fix(nodes): fix seam painting

The problem was the same seed was getting used for the seam painting pass, causing the fried look.

Same issue as if you do img2img on a txt2img with the same seed/prompt.

Thanks to @hipsterusername for teaming up to debug this. We got pretty deep into the weeds.
This commit is contained in:
psychedelicious 2023-05-24 00:03:51 +10:00
parent 928caff2a6
commit fb0b63c580

View File

@ -196,7 +196,7 @@ class Inpaint(Img2Img):
seam_noise = self.get_noise(im.width, im.height)
result = make_image(seam_noise, seed)
result = make_image(seam_noise, seed=None)
return result