diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-16 06:25:08 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-16 06:25:33 +0000 |
commit | 0dfffe53ec11b2ee097d55efc479f8e707015db9 (patch) | |
tree | 2ad13a0cf77bc189a8c9097bd507f9674f993da6 | |
parent | 2be85f8fe03533bf3b1ad562ea58ee8227ba3b99 (diff) | |
download | stable-diffusion-webui-gfx803-0dfffe53ec11b2ee097d55efc479f8e707015db9.tar.gz stable-diffusion-webui-gfx803-0dfffe53ec11b2ee097d55efc479f8e707015db9.tar.bz2 stable-diffusion-webui-gfx803-0dfffe53ec11b2ee097d55efc479f8e707015db9.zip |
Merge pull request #14307 from AUTOMATIC1111/default-Falst-js_live_preview_in_modal_lightbox
default False js_live_preview_in_modal_lightbox
-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"), {
|