diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-08-25 01:12:19 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-08-25 01:12:19 +0000 |
commit | 4130e5db3d5c2fa7cbfe9e09e5eadba1ed958ab0 (patch) | |
tree | 1055fcf309d0e395d05beb402a089a89b8830c8c /modules/ui.py | |
parent | 935d9d899c40dba006a24553934b4b895c65a15f (diff) | |
download | stable-diffusion-webui-gfx803-4130e5db3d5c2fa7cbfe9e09e5eadba1ed958ab0.tar.gz stable-diffusion-webui-gfx803-4130e5db3d5c2fa7cbfe9e09e5eadba1ed958ab0.tar.bz2 stable-diffusion-webui-gfx803-4130e5db3d5c2fa7cbfe9e09e5eadba1ed958ab0.zip |
img2img batch PNG info model hash
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 2b6a13cb..9c5082c3 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -614,7 +614,7 @@ def create_ui(): with gr.Accordion("PNG info", open=False):
img2img_batch_use_png_info = gr.Checkbox(label="Append png info to prompts", **shared.hide_dirs, elem_id="img2img_batch_use_png_info")
img2img_batch_png_info_dir = gr.Textbox(label="PNG info directory", **shared.hide_dirs, placeholder="Leave empty to use input directory", elem_id="img2img_batch_png_info_dir")
- img2img_batch_png_info_props = gr.CheckboxGroup(["Prompt", "Negative prompt", "Seed", "CFG scale", "Sampler", "Steps"], label="Parameters to take from png info", info="Prompts from png info will be appended to prompts set in ui.")
+ img2img_batch_png_info_props = gr.CheckboxGroup(["Prompt", "Negative prompt", "Seed", "CFG scale", "Sampler", "Steps", "Model hash"], label="Parameters to take from png info", info="Prompts from png info will be appended to prompts set in ui.")
img2img_tabs = [tab_img2img, tab_sketch, tab_inpaint, tab_inpaint_color, tab_inpaint_upload, tab_batch]
|