aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorVladimir Mandic <mandic00@live.com>2023-03-15 14:14:40 +0000
committerGitHub <noreply@github.com>2023-03-15 14:14:40 +0000
commit250193ee933eb4c45f07b910bc650e3b1a9a071e (patch)
treeb1a9ec2a6a051e8e19d42610070f16b674b27870 /webui.py
parenta9fed7c364061ae6efb37f797b6b522cb3cf7aa2 (diff)
downloadstable-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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/webui.py b/webui.py
index aaec79fd..0e0ff105 100644
--- a/webui.py
+++ b/webui.py
@@ -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