diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-31 15:40:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 15:40:00 +0000 |
commit | e7439b5cbe207468aed7f527e119896f07f5bf22 (patch) | |
tree | 49c376d660c42d359ba4ca81932eba6f3857c94d /modules/ui.py | |
parent | b957dcfece29c84ac0cfcd5a69475ff8684c531f (diff) | |
parent | bae2fca52332cef3248d68a6d578eb67d9ced50f (diff) | |
download | stable-diffusion-webui-gfx803-e7439b5cbe207468aed7f527e119896f07f5bf22.tar.gz stable-diffusion-webui-gfx803-e7439b5cbe207468aed7f527e119896f07f5bf22.tar.bz2 stable-diffusion-webui-gfx803-e7439b5cbe207468aed7f527e119896f07f5bf22.zip |
Merge pull request #10785 from nyqui/fix-hires.fix
fix "hires. fix" prompt sharing same labels with txt2img_prompt
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index 001b9792..6189ceeb 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -505,10 +505,10 @@ def create_ui(): with FormRow(elem_id="txt2img_hires_fix_row4", variant="compact", visible=opts.hires_fix_show_prompts) as hr_prompts_container:
with gr.Column(scale=80):
with gr.Row():
- hr_prompt = gr.Textbox(label="Prompt", elem_id="hires_prompt", show_label=False, lines=3, placeholder="Prompt for hires fix pass.\nLeave empty to use the same prompt as in first pass.", elem_classes=["prompt"])
+ hr_prompt = gr.Textbox(label="Hires prompt", elem_id="hires_prompt", show_label=False, lines=3, placeholder="Prompt for hires fix pass.\nLeave empty to use the same prompt as in first pass.", elem_classes=["prompt"])
with gr.Column(scale=80):
with gr.Row():
- hr_negative_prompt = gr.Textbox(label="Negative prompt", elem_id="hires_neg_prompt", show_label=False, lines=3, placeholder="Negative prompt for hires fix pass.\nLeave empty to use the same negative prompt as in first pass.", elem_classes=["prompt"])
+ hr_negative_prompt = gr.Textbox(label="Hires negative prompt", elem_id="hires_neg_prompt", show_label=False, lines=3, placeholder="Negative prompt for hires fix pass.\nLeave empty to use the same negative prompt as in first pass.", elem_classes=["prompt"])
elif category == "batch":
if not opts.dimensions_and_batch_together:
|