diff options
author | Robert Barron <rubberbaron@robustspread.com> | 2023-08-10 14:45:35 +0000 |
---|---|---|
committer | Robert Barron <rubberbaron@robustspread.com> | 2023-08-10 14:45:35 +0000 |
commit | 863613293e9337aed7416fbd163b15816b57fecf (patch) | |
tree | bef4d3276c4e7a8065fc3c46bddcadff0b378a79 /modules/shared_options.py | |
parent | 9af5cce4c7c6681bd8dd639e5647cc8d0f71cf2c (diff) | |
parent | d1ba46b6e15d2f2917e7d392955c8c6f988527ba (diff) | |
download | stable-diffusion-webui-gfx803-863613293e9337aed7416fbd163b15816b57fecf.tar.gz stable-diffusion-webui-gfx803-863613293e9337aed7416fbd163b15816b57fecf.tar.bz2 stable-diffusion-webui-gfx803-863613293e9337aed7416fbd163b15816b57fecf.zip |
Merge branch 'shared-hires-prompt-raw' into shared-hires-prompt-test
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 1e5b64ea..470e27f7 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -197,6 +197,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"), {
|