Merge 1aa7070e6c into ae05379cc9
This commit is contained in:
commit
1bbf94d459
|
|
@ -62,7 +62,7 @@
|
|||
"Image Number": "Image Number",
|
||||
"Negative Prompt": "Negative Prompt",
|
||||
"Describing what you do not want to see.": "Describing what you do not want to see.",
|
||||
"Random": "Random",
|
||||
"Random Seed": "Random Seed",
|
||||
"Seed": "Seed",
|
||||
"Disable seed increment": "Disable seed increment",
|
||||
"Disable automatic seed increment when image number is > 1.": "Disable automatic seed increment when image number is > 1.",
|
||||
|
|
|
|||
2
webui.py
2
webui.py
|
|
@ -588,7 +588,7 @@ with shared.gradio_root:
|
|||
info='Describing what you do not want to see.', lines=2,
|
||||
elem_id='negative_prompt',
|
||||
value=modules.config.default_prompt_negative)
|
||||
seed_random = gr.Checkbox(label='Random', value=True)
|
||||
seed_random = gr.Checkbox(label='Random Seed', value=True)
|
||||
image_seed = gr.Textbox(label='Seed', value=0, max_lines=1, visible=False) # workaround for https://github.com/gradio-app/gradio/issues/5354
|
||||
|
||||
def random_checked(r):
|
||||
|
|
|
|||
Loading…
Reference in New Issue