diff options
author | Vladimir Mandic <mandic00@live.com> | 2023-03-15 14:14:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 14:14:40 +0000 |
commit | 250193ee933eb4c45f07b910bc650e3b1a9a071e (patch) | |
tree | b1a9ec2a6a051e8e19d42610070f16b674b27870 /webui.py | |
parent | a9fed7c364061ae6efb37f797b6b522cb3cf7aa2 (diff) | |
download | stable-diffusion-webui-gfx803-250193ee933eb4c45f07b910bc650e3b1a9a071e.tar.gz stable-diffusion-webui-gfx803-250193ee933eb4c45f07b910bc650e3b1a9a071e.tar.bz2 stable-diffusion-webui-gfx803-250193ee933eb4c45f07b910bc650e3b1a9a071e.zip |
disable gradio css transitions
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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
|