From dd9aa3b84b8c0f64a2ad6b252a6cee8f2d571ca1 Mon Sep 17 00:00:00 2001 From: Beyondo <58893646+Beyondo@users.noreply.github.com> Date: Mon, 22 Jan 2024 13:11:51 +0200 Subject: [PATCH] Removed forced overlay --- modules/processing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/processing.py b/modules/processing.py index 6f01c95f5b6..7eecc5840d5 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -928,7 +928,8 @@ def infotext(index=0, use_main_prompt=False): images.save_image(image_without_cc, p.outpath_samples, "", p.seeds[i], p.prompts[i], opts.samples_format, info=infotext(i), p=p, suffix="-before-color-correction") image = apply_color_correction(p.color_corrections[i], image) - image = apply_overlay(image, p.paste_to, i, p.overlay_images) + # Removed till we have a UI option for it. Nobody would miss this line. + #image = apply_overlay(image, p.paste_to, i, p.overlay_images) if save_samples: images.save_image(image, p.outpath_samples, "", p.seeds[i], p.prompts[i], opts.samples_format, info=infotext(i), p=p)