diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-14 10:36:17 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-14 15:48:37 +0000 |
commit | 3c0c27757944ae17a7fa4c2323ee9ae2d434dbce (patch) | |
tree | cf260c0e4e6f17e8826420856e6ab638d3dab070 /modules | |
parent | aeaf1c510f1e7f246d892dad74122e0117a68a8c (diff) | |
download | stable-diffusion-webui-gfx803-3c0c27757944ae17a7fa4c2323ee9ae2d434dbce.tar.gz stable-diffusion-webui-gfx803-3c0c27757944ae17a7fa4c2323ee9ae2d434dbce.tar.bz2 stable-diffusion-webui-gfx803-3c0c27757944ae17a7fa4c2323ee9ae2d434dbce.zip |
default False js_live_preview_in_modal_lightbox
Diffstat (limited to 'modules')
-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 41097d8e..d2e86ff1 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -331,7 +331,7 @@ options_templates.update(options_section(('ui', "Live previews", "ui"), { "live_preview_content": OptionInfo("Prompt", "Live preview subject", gr.Radio, {"choices": ["Combined", "Prompt", "Negative prompt"]}),
"live_preview_refresh_period": OptionInfo(1000, "Progressbar and preview update period").info("in milliseconds"),
"live_preview_fast_interrupt": OptionInfo(False, "Return image with chosen live preview method on interrupt").info("makes interrupts faster"),
- "js_live_preview_in_modal_lightbox": OptionInfo(True, "Show Live preview in full page image viewer"),
+ "js_live_preview_in_modal_lightbox": OptionInfo(False, "Show Live preview in full page image viewer"),
}))
options_templates.update(options_section(('sampler-params', "Sampler parameters", "sd"), {
|