aboutsummaryrefslogtreecommitdiff
path: root/modules/shared.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-13 20:00:19 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-09-13 20:00:19 +0300
commit950064ee96ad0f8bc88836741a7d18ce73065462 (patch)
treed02823a5d3a53905395391e7bb80594556763146 /modules/shared.py
parent29022300ba113893a775f579c9a85045e65091c1 (diff)
img2img_color_correction off by default for #394
Diffstat (limited to 'modules/shared.py')
-rw-r--r--modules/shared.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py
index 594712d4..bc39ad1c 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -122,7 +122,7 @@ class Options:
"export_for_4chan": OptionInfo(True, "If PNG image is larger than 4MB or any dimension is larger than 4000, downscale and save copy as JPG"),
"enable_pnginfo": OptionInfo(True, "Save text information about generation parameters as chunks to png files"),
"add_model_hash_to_info": OptionInfo(False, "Add model hash to generation information"),
- "img2img_color_correction": OptionInfo(True, "Apply color correction to img2img results to match original colors."),
+ "img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
"font": OptionInfo("", "Font for image grids that have text"),
"enable_emphasis": OptionInfo(True, "Use (text) to make model pay more attention to text text and [text] to make it pay less attention"),
"save_txt": OptionInfo(False, "Create a text file next to every image with generation parameters."),