diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-24 06:41:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 06:41:16 +0000 |
commit | 0027ce1f6e58c5f4279173e468a60aef420babfe (patch) | |
tree | ce1c72dcfb95af92bc666526c123ae99078dccb6 /modules/shared_options.py | |
parent | 06f18186dcb4d866cf8e80ff69a032de7aff7ab5 (diff) | |
parent | 99ab3d43a71e3f66e57d3cd2013b97c97e7ab69b (diff) | |
download | stable-diffusion-webui-gfx803-0027ce1f6e58c5f4279173e468a60aef420babfe.tar.gz stable-diffusion-webui-gfx803-0027ce1f6e58c5f4279173e468a60aef420babfe.tar.bz2 stable-diffusion-webui-gfx803-0027ce1f6e58c5f4279173e468a60aef420babfe.zip |
Merge pull request #12457 from rubberbaron/shared-hires-prompt-test
prompt editing timeline has separate range for first pass and hires-fix pass
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 88f6b334..d1389838 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -203,6 +203,7 @@ options_templates.update(options_section(('compatibility', "Compatibility"), { "use_old_hires_fix_width_height": OptionInfo(False, "For hires fix, use width/height sliders to set final resolution rather than first pass (disables Upscale by, Resize width/height to)."),
"dont_fix_second_order_samplers_schedule": OptionInfo(False, "Do not fix prompt schedule for second order samplers."),
"hires_fix_use_firstpass_conds": OptionInfo(False, "For hires fix, calculate conds of second pass using extra networks of first pass."),
+ "use_old_scheduling": OptionInfo(False, "Use old prompt where first pass and hires both used the same timeline, and < 1 meant relative and >= 1 meant absolute"),
}))
options_templates.update(options_section(('interrogate', "Interrogate"), {
|