aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-04 09:04:11 +0000
committerGitHub <noreply@github.com>2023-08-04 09:04:11 +0000
commit2e613a6ffc65ed5edf439abc7f5e482698ade02a (patch)
treef3c8224a8404a5fe124142df70514807156bfafa
parentc93857922ae2a97ede8a98f5281b36201146f074 (diff)
parentf5994e84a213e40f9f6f0eb24df1d4fe38a45a2e (diff)
downloadstable-diffusion-webui-gfx803-2e613a6ffc65ed5edf439abc7f5e482698ade02a.tar.gz
stable-diffusion-webui-gfx803-2e613a6ffc65ed5edf439abc7f5e482698ade02a.tar.bz2
stable-diffusion-webui-gfx803-2e613a6ffc65ed5edf439abc7f5e482698ade02a.zip
Merge pull request #12304 from catboxanon/fix/extras-infotext-paste
Correctly toggle extras checkbox for infotext paste
-rw-r--r--modules/ui.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py
index 8b38d213..586174b8 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -585,6 +585,7 @@ def create_ui():
(width, "Size-1"),
(height, "Size-2"),
(batch_size, "Batch size"),
+ (seed_checkbox, lambda d: "Variation seed" in d or "Seed resize from-1" in d),
(subseed, "Variation seed"),
(subseed_strength, "Variation seed strength"),
(seed_resize_from_w, "Seed resize from-1"),
@@ -972,6 +973,7 @@ def create_ui():
(width, "Size-1"),
(height, "Size-2"),
(batch_size, "Batch size"),
+ (seed_checkbox, lambda d: "Variation seed" in d or "Seed resize from-1" in d),
(subseed, "Variation seed"),
(subseed_strength, "Variation seed strength"),
(seed_resize_from_w, "Seed resize from-1"),