diff options
author | Justin Riddiough <jriddiough@gmail.com> | 2022-10-04 06:14:28 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-04 12:21:34 +0000 |
commit | accd00d6b8258c12b5168918a4c546b02357924a (patch) | |
tree | 64109dbe7b44cb5385f6a3b477f6cf1f0d18c7d8 /modules/shared.py | |
parent | bc4d457de82f76f8ab9f2bedf933c06deb5d5ba9 (diff) | |
download | stable-diffusion-webui-gfx803-accd00d6b8258c12b5168918a4c546b02357924a.tar.gz stable-diffusion-webui-gfx803-accd00d6b8258c12b5168918a4c546b02357924a.tar.bz2 stable-diffusion-webui-gfx803-accd00d6b8258c12b5168918a4c546b02357924a.zip |
Explain how to use second progress bar in pycharm
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 25aff5b0..11bdf01a 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -200,7 +200,7 @@ options_templates.update(options_section(('face-restoration', "Face restoration" options_templates.update(options_section(('system', "System"), {
"memmon_poll_rate": OptionInfo(8, "VRAM usage polls per second during generation. Set to 0 to disable.", gr.Slider, {"minimum": 0, "maximum": 40, "step": 1}),
"samples_log_stdout": OptionInfo(False, "Always print all generation info to standard output"),
- "multiple_tqdm": OptionInfo(True, "Add a second progress bar to the console that shows progress for an entire job. Broken in PyCharm console."),
+ "multiple_tqdm": OptionInfo(True, "Add a second progress bar to the console that shows progress for an entire job. In PyCharm select 'emulate terminal in console output'."),
}))
options_templates.update(options_section(('sd', "Stable Diffusion"), {
|