aboutsummaryrefslogtreecommitdiffstats
path: root/modules/shared.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-05 14:11:37 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2023-08-05 14:11:37 +0000
commitc6278c15a81bf65efb65ded50368972a920cc198 (patch)
tree21c9b23ac94aa8cda5a22a72df6654f572d65efe /modules/shared.py
parent0a0a6b2a4d3df5e46cf7e0917ae10fcdc89ca5b5 (diff)
downloadstable-diffusion-webui-gfx803-c6278c15a81bf65efb65ded50368972a920cc198.tar.gz
stable-diffusion-webui-gfx803-c6278c15a81bf65efb65ded50368972a920cc198.tar.bz2
stable-diffusion-webui-gfx803-c6278c15a81bf65efb65ded50368972a920cc198.zip
add explanation for gradio themes
Diffstat (limited to 'modules/shared.py')
-rw-r--r--modules/shared.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py
index 9530d80e..a99b500b 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -549,7 +549,7 @@ options_templates.update(options_section(('extra_networks', "Extra Networks"), {
options_templates.update(options_section(('ui', "User interface"), {
"localization": OptionInfo("None", "Localization", gr.Dropdown, lambda: {"choices": ["None"] + list(localization.localizations.keys())}, refresh=lambda: localization.list_localizations(cmd_opts.localizations_dir)).needs_reload_ui(),
- "gradio_theme": OptionInfo("Default", "Gradio theme", ui_components.DropdownEditable, lambda: {"choices": ["Default"] + gradio_hf_hub_themes}).needs_reload_ui(),
+ "gradio_theme": OptionInfo("Default", "Gradio theme", ui_components.DropdownEditable, lambda: {"choices": ["Default"] + gradio_hf_hub_themes}).info("you can also manually enter any of themes from the <a href='https://huggingface.co/spaces/gradio/theme-gallery'>gallery</a>.").needs_reload_ui(),
"return_grid": OptionInfo(True, "Show grid in results for web"),
"do_not_show_images": OptionInfo(False, "Do not show any images in results for web"),
"send_seed": OptionInfo(True, "Send seed when sending prompt or image to other interface"),