diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-05 16:19:55 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-05 16:19:55 +0000 |
commit | 4d4a9e733219f8c065a4ab6c5ab42836db7330fe (patch) | |
tree | a7f84a72134f0a27a9e895a987dcf298be7472db /modules/shared_options.py | |
parent | d9499f4301018ebd2977685d098381aa4111d2ae (diff) | |
download | stable-diffusion-webui-gfx803-4d4a9e733219f8c065a4ab6c5ab42836db7330fe.tar.gz stable-diffusion-webui-gfx803-4d4a9e733219f8c065a4ab6c5ab42836db7330fe.tar.bz2 stable-diffusion-webui-gfx803-4d4a9e733219f8c065a4ab6c5ab42836db7330fe.zip |
added compact prompt option
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index 6543e440..4e3d7541 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -272,6 +272,7 @@ options_templates.update(options_section(('ui', "User interface"), { "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(),
+ "compact_prompt_box": OptionInfo(True, "Compact prompt layout").info("puts prompt and negative prompt inside the Generate tab, leaving more vertical space for the image on the right").needs_reload_ui(),
}))
|