diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-09-09 07:02:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 07:02:02 +0000 |
commit | 558808c748d118f5d417a0d3810c0b7e9dcf8626 (patch) | |
tree | 2ce7be011290bb129f2592415971bfc07f6705da /modules/shared_options.py | |
parent | 46375f059276cb2d4d1e47bf65f984c6466dc2a0 (diff) | |
parent | c68aabc852151633016d3d5c84b433041f09d96e (diff) | |
download | stable-diffusion-webui-gfx803-558808c748d118f5d417a0d3810c0b7e9dcf8626.tar.gz stable-diffusion-webui-gfx803-558808c748d118f5d417a0d3810c0b7e9dcf8626.tar.bz2 stable-diffusion-webui-gfx803-558808c748d118f5d417a0d3810c0b7e9dcf8626.zip |
Merge pull request #13119 from AUTOMATIC1111/enable_console_prompts-in-settings
enable console prompts in settings
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 e13e79b8..d07f3cd1 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -100,6 +100,7 @@ options_templates.update(options_section(('face-restoration', "Face restoration" options_templates.update(options_section(('system', "System"), {
"auto_launch_browser": OptionInfo("Local", "Automatically open webui in browser on startup", gr.Radio, lambda: {"choices": ["Disable", "Local", "Remote"]}),
+ "enable_console_prompts": OptionInfo(shared.cmd_opts.enable_console_prompts, "Print prompts to console when generating with txt2img and img2img."),
"show_warnings": OptionInfo(False, "Show warnings in console.").needs_reload_ui(),
"show_gradio_deprecation_warnings": OptionInfo(True, "Show gradio deprecation warnings in console.").needs_reload_ui(),
"memmon_poll_rate": OptionInfo(8, "VRAM usage polls per second during generation.", gr.Slider, {"minimum": 0, "maximum": 40, "step": 1}).info("0 = disable"),
|