fix: change wrong label for in describe apply styles checkbox

This commit is contained in:
Manuel Schmid
2024-08-03 15:16:18 +02:00
parent 39d07bf0f3
commit ef0acca9f9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -341,7 +341,7 @@ with shared.gradio_root:
label='Content Type',
choices=flags.describe_types,
value=modules.config.default_describe_content_type)
describe_apply_styles = gr.Checkbox(label='Appy Styles', value=modules.config.default_describe_apply_prompts_checkbox)
describe_apply_styles = gr.Checkbox(label='Apply Styles', value=modules.config.default_describe_apply_prompts_checkbox)
describe_btn = gr.Button(value='Describe this Image into Prompt')
describe_image_size = gr.Textbox(label='Image Size and Recommended Size', elem_id='describe_image_size', visible=False)
gr.HTML('<a href="https://github.com/lllyasviel/Fooocus/discussions/1363" target="_blank">\U0001F4D4 Documentation</a>')