Skip to content

Commit 2c78cec

Browse files
authored
Merge pull request #3436 from lllyasviel/develop
fix: change wrong label for in describe apply styles checkbox
2 parents 60af8d2 + ef0acca commit 2c78cec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

language/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"Content Type": "Content Type",
1818
"Photograph": "Photograph",
1919
"Art/Anime": "Art/Anime",
20-
"Appy Styles": "Appy Styles",
20+
"Apply Styles": "Apply Styles",
2121
"Describe this Image into Prompt": "Describe this Image into Prompt",
2222
"Image Size and Recommended Size": "Image Size and Recommended Size",
2323
"Upscale or Variation:": "Upscale or Variation:",

webui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def generate_mask(image, mask_model, cloth_category, dino_prompt_text, sam_model
341341
label='Content Type',
342342
choices=flags.describe_types,
343343
value=modules.config.default_describe_content_type)
344-
describe_apply_styles = gr.Checkbox(label='Appy Styles', value=modules.config.default_describe_apply_prompts_checkbox)
344+
describe_apply_styles = gr.Checkbox(label='Apply Styles', value=modules.config.default_describe_apply_prompts_checkbox)
345345
describe_btn = gr.Button(value='Describe this Image into Prompt')
346346
describe_image_size = gr.Textbox(label='Image Size and Recommended Size', elem_id='describe_image_size', visible=False)
347347
gr.HTML('<a href="https://github.com/lllyasviel/Fooocus/discussions/1363" target="_blank">\U0001F4D4 Documentation</a>')

0 commit comments

Comments
 (0)