diff options
author | invincibledude <> | 2023-01-22 12:43:12 +0000 |
---|---|---|
committer | invincibledude <> | 2023-01-22 12:43:12 +0000 |
commit | b0ae92d605dfb65314b610589f84b643d535261e (patch) | |
tree | 53952ef2cc47e138c7199ebbf3569f0cb67668c9 /modules/ui.py | |
parent | 34f6d667429ec3d4e0f09c6148fd37e66c460cb7 (diff) | |
download | stable-diffusion-webui-gfx803-b0ae92d605dfb65314b610589f84b643d535261e.tar.gz stable-diffusion-webui-gfx803-b0ae92d605dfb65314b610589f84b643d535261e.tar.bz2 stable-diffusion-webui-gfx803-b0ae92d605dfb65314b610589f84b643d535261e.zip |
UI improvements
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 e0a9e40b..1656e76d 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -678,10 +678,10 @@ def create_ui(): with FormRow(elem_id="txt2img_hires_fix_row4", variant="compact"):
with gr.Column(scale=80):
with gr.Row():
- hr_prompt = gr.Textbox(label="Prompt", elem_id=f"hires_prompt", show_label=False, lines=3, placeholder="Prompt that will be used for hires fix pass")
+ hr_prompt = gr.Textbox(label="Prompt", elem_id=f"hires_prompt", show_label=False, lines=3, placeholder="Prompt that will be used for hires fix pass (leave it blank to use the same prompt as in initial txt2img gen)")
with gr.Column(scale=80):
with gr.Row():
- hr_negative_prompt = gr.Textbox(label="Negative prompt", elem_id=f"hires_neg_prompt", show_label=False, lines=3, placeholder="Negative prompt that will be used for hires fix pass")
+ hr_negative_prompt = gr.Textbox(label="Negative prompt", elem_id=f"hires_neg_prompt", show_label=False, lines=3, placeholder="Negative prompt that will be used for hires fix pass (leave it blank to use the same prompt as in initial txt2img gen)")
elif category == "batch":
if not opts.dimensions_and_batch_together:
|