From 41434ba3cd228fe9fc533e21302fac410f879f31 Mon Sep 17 00:00:00 2001 From: AUTOMATIC <16777216c@gmail.com> Date: Fri, 9 Sep 2022 08:58:31 +0300 Subject: [PATCH] make X/Y plot's S/R apply to negative prompt as well. --- scripts/xy_grid.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/xy_grid.py b/scripts/xy_grid.py index df549298..b53c829a 100644 --- a/scripts/xy_grid.py +++ b/scripts/xy_grid.py @@ -21,6 +21,7 @@ def apply_field(field): def apply_prompt(p, x, xs): p.prompt = p.prompt.replace(xs[0], x) + p.negative_prompt = p.negative_prompt.replace(xs[0], x) samplers_dict = {}