diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-25 08:41:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 08:41:31 +0000 |
commit | a6cedafb27aa5fa50a06d2c7889b99eb274e2246 (patch) | |
tree | 71978c5314f4c13d08864393c0363a6281d6c4c2 /modules/ui.py | |
parent | e835e61f3aae99eb48591920b89eca0426cf2a2b (diff) | |
parent | 4130e5db3d5c2fa7cbfe9e09e5eadba1ed958ab0 (diff) | |
download | stable-diffusion-webui-gfx803-a6cedafb27aa5fa50a06d2c7889b99eb274e2246.tar.gz stable-diffusion-webui-gfx803-a6cedafb27aa5fa50a06d2c7889b99eb274e2246.tar.bz2 stable-diffusion-webui-gfx803-a6cedafb27aa5fa50a06d2c7889b99eb274e2246.zip |
Merge pull request #12767 from AUTOMATIC1111/img2img-batch-PNG_info-model_hash
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]
|