aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-03-25 08:05:50 +0000
committerGitHub <noreply@github.com>2023-03-25 08:05:50 +0000
commit84026821188ccf81b91c9c854a18f9852b90b13f (patch)
tree46f68fc93b7b096e3efffc95eaf4228255eed409 /webui.py
parente8bbc344c3309c70f7f5abeb34b90f14bd0cfa51 (diff)
parent250193ee933eb4c45f07b910bc650e3b1a9a071e (diff)
downloadstable-diffusion-webui-gfx803-84026821188ccf81b91c9c854a18f9852b90b13f.tar.gz
stable-diffusion-webui-gfx803-84026821188ccf81b91c9c854a18f9852b90b13f.tar.bz2
stable-diffusion-webui-gfx803-84026821188ccf81b91c9c854a18f9852b90b13f.zip
Merge pull request #8651 from vladmandic/flicker
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 ca725b7d..027f3579 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