diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-05-20 17:31:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-20 17:31:18 +0000 |
commit | b2b06eee02a6f3d0d6f00558a53a17413a6396ca (patch) | |
tree | d38d9a583c088552ec23454d1e5cc225bc767aa2 /modules/ui.py | |
parent | 39ec4f06ffb2c26e1298b2c5d80874dc3fd693ac (diff) | |
download | stable-diffusion-webui-gfx803-b2b06eee02a6f3d0d6f00558a53a17413a6396ca.tar.gz stable-diffusion-webui-gfx803-b2b06eee02a6f3d0d6f00558a53a17413a6396ca.tar.bz2 stable-diffusion-webui-gfx803-b2b06eee02a6f3d0d6f00558a53a17413a6396ca.zip |
Support edit attn shortcut in hires fix prompts
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 82820ab5..c1f7a6a3 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -502,7 +502,7 @@ def create_ui(): with FormRow(elem_id="txt2img_hires_fix_row3", variant="compact", visible=opts.hires_fix_show_sampler) as hr_sampler_container:
hr_sampler_index = gr.Dropdown(label='Hires sampling method', elem_id="hr_sampler", choices=["Use same sampler"] + [x.name for x in samplers_for_img2img], value="Use same sampler", type="index")
- with FormRow(elem_id="txt2img_hires_fix_row4", variant="compact", visible=opts.hires_fix_show_prompts) as hr_prompts_container:
+ with FormRow(elem_id="txt2img_hires_fix_row4_toprow", 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.")
|