diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-09-30 07:10:57 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-09-30 07:10:57 +0000 |
commit | 5cc7bf387661354e5c268c0e8198cc44328b3282 (patch) | |
tree | b5e0368eb0ec99ee450ef98491b02daf26d72379 /modules/shared_options.py | |
parent | 416fbde7262a0ecc698647a8bb320fb01bdba388 (diff) | |
download | stable-diffusion-webui-gfx803-5cc7bf387661354e5c268c0e8198cc44328b3282.tar.gz stable-diffusion-webui-gfx803-5cc7bf387661354e5c268c0e8198cc44328b3282.tar.bz2 stable-diffusion-webui-gfx803-5cc7bf387661354e5c268c0e8198cc44328b3282.zip |
reword sd_checkpoint_dropdown_use_short setting and add explanation
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index 8e8d402d..61b93d47 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -262,7 +262,7 @@ options_templates.update(options_section(('ui', "User interface"), { "ui_tab_order": OptionInfo([], "UI tab order", ui_components.DropdownMulti, lambda: {"choices": list(shared.tab_names)}).needs_reload_ui(),
"hidden_tabs": OptionInfo([], "Hidden UI tabs", ui_components.DropdownMulti, lambda: {"choices": list(shared.tab_names)}).needs_reload_ui(),
"ui_reorder_list": OptionInfo([], "txt2img/img2img UI item order", ui_components.DropdownMulti, lambda: {"choices": list(shared_items.ui_reorder_categories())}).info("selected items appear first").needs_reload_ui(),
- "sd_checkpoint_dropdown_use_short": OptionInfo(False, "Use short name for Stable Diffusion checkpoint dropdown"),
+ "sd_checkpoint_dropdown_use_short": OptionInfo(False, "Checkpoint dropdown: use filenames without paths").info("models in subdirectories like photo/sd15.ckpt will be listed as just sd15.ckpt"),
"hires_fix_show_sampler": OptionInfo(False, "Hires fix: show hires checkpoint and sampler selection").needs_reload_ui(),
"hires_fix_show_prompts": OptionInfo(False, "Hires fix: show hires prompt and negative prompt").needs_reload_ui(),
"disable_token_counters": OptionInfo(False, "Disable prompt token counters").needs_reload_ui(),
|