diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-10 20:47:02 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-10 20:47:07 +0000 |
commit | 29fb5327640465fc83111e2170c5d8aa2b15266c (patch) | |
tree | fa4d838e909108aff05fc9d275d16209784db0cc /modules | |
parent | 2bd2b8b7cf5dad23bd3d70f262c99fb4bdb48cfe (diff) | |
download | stable-diffusion-webui-gfx803-29fb5327640465fc83111e2170c5d8aa2b15266c.tar.gz stable-diffusion-webui-gfx803-29fb5327640465fc83111e2170c5d8aa2b15266c.tar.bz2 stable-diffusion-webui-gfx803-29fb5327640465fc83111e2170c5d8aa2b15266c.zip |
change color selector in settings to be part of form
Diffstat (limited to 'modules')
-rw-r--r-- | modules/shared.py | 4 | ||||
-rw-r--r-- | modules/ui_components.py | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/modules/shared.py b/modules/shared.py index aa37c8ce..264264a6 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -14,7 +14,7 @@ import modules.interrogate import modules.memmon
import modules.styles
import modules.devices as devices
-from modules import localization, sd_vae, extensions, script_loading, errors
+from modules import localization, sd_vae, extensions, script_loading, errors, ui_components
from modules.paths import models_path, script_path, sd_path
@@ -387,7 +387,7 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { "initial_noise_multiplier": OptionInfo(1.0, "Noise multiplier for img2img", gr.Slider, {"minimum": 0.5, "maximum": 1.5, "step": 0.01 }),
"img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
"img2img_fix_steps": OptionInfo(False, "With img2img, do exactly the amount of steps the slider specifies (normally you'd do less with less denoising)."),
- "img2img_background_color": OptionInfo("#ffffff", "With img2img, fill image's transparent parts with this color.", gr.ColorPicker, {}),
+ "img2img_background_color": OptionInfo("#ffffff", "With img2img, fill image's transparent parts with this color.", ui_components.FormColorPicker, {}),
"enable_quantization": OptionInfo(False, "Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply."),
"enable_emphasis": OptionInfo(True, "Emphasis: use (text) to make model pay more attention to text and [text] to make it pay less attention"),
"enable_batch_seeds": OptionInfo(True, "Make K-diffusion samplers produce same images in a batch as when making a single image"),
diff --git a/modules/ui_components.py b/modules/ui_components.py index cac001dc..97acff06 100644 --- a/modules/ui_components.py +++ b/modules/ui_components.py @@ -31,3 +31,9 @@ class FormHTML(gr.HTML, gr.components.FormComponent): def get_block_name(self):
return "html"
+
+class FormColorPicker(gr.ColorPicker, gr.components.FormComponent):
+ """Same as gr.ColorPicker but fits inside gradio forms"""
+
+ def get_block_name(self):
+ return "colorpicker"
|