From ef0acca9f9bbbc9e1e5481b3c31bde88f3748597 Mon Sep 17 00:00:00 2001 From: Manuel Schmid Date: Sat, 3 Aug 2024 15:16:18 +0200 Subject: [PATCH] fix: change wrong label for in describe apply styles checkbox --- language/en.json | 2 +- webui.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/language/en.json b/language/en.json index 108adad66..7e8b27daa 100644 --- a/language/en.json +++ b/language/en.json @@ -17,7 +17,7 @@ "Content Type": "Content Type", "Photograph": "Photograph", "Art/Anime": "Art/Anime", - "Appy Styles": "Appy Styles", + "Apply Styles": "Apply Styles", "Describe this Image into Prompt": "Describe this Image into Prompt", "Image Size and Recommended Size": "Image Size and Recommended Size", "Upscale or Variation:": "Upscale or Variation:", diff --git a/webui.py b/webui.py index 0ca6bdec7..b8159d855 100644 --- a/webui.py +++ b/webui.py @@ -341,7 +341,7 @@ def generate_mask(image, mask_model, cloth_category, dino_prompt_text, sam_model 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('\U0001F4D4 Documentation')