diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-25 09:08:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 09:08:24 +0000 |
commit | 8dbe793af53194ff3054bfbc9529a10f961bdbd3 (patch) | |
tree | 087f31c96c6b0280c75cfca4380638cde72ff90e /webui.py | |
parent | 8e3ced73a8c8f435809de544e0574da265177289 (diff) | |
parent | 70615448b2ef3285dba9bb1992974cb1eaf10995 (diff) | |
download | stable-diffusion-webui-gfx803-8dbe793af53194ff3054bfbc9529a10f961bdbd3.tar.gz stable-diffusion-webui-gfx803-8dbe793af53194ff3054bfbc9529a10f961bdbd3.tar.bz2 stable-diffusion-webui-gfx803-8dbe793af53194ff3054bfbc9529a10f961bdbd3.zip |
Merge branch 'master' into extra-network-info
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -240,7 +240,7 @@ def webui(): shared.demo = modules.ui.create_ui()
startup_timer.record("create ui")
- if cmd_opts.gradio_queue:
+ if not cmd_opts.no_gradio_queue:
shared.demo.queue(64)
gradio_auth_creds = []
@@ -262,6 +262,9 @@ def webui(): inbrowser=cmd_opts.autolaunch,
prevent_thread_lock=True
)
+ for dep in shared.demo.dependencies:
+ dep['show_progress'] = False # disable gradio css animation on component update
+
# after initial launch, disable --autolaunch for subsequent restarts
cmd_opts.autolaunch = False
|