aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-06 20:10:12 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-06 20:10:12 +0000
commit7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd (patch)
treec5b60ee07477249577260b421d52de9840dfc1ef /webui.py
parent0bfa0d4381c65077ffa7bd014040813dbad84fed (diff)
downloadstable-diffusion-webui-gfx803-7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd.tar.gz
stable-diffusion-webui-gfx803-7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd.tar.bz2
stable-diffusion-webui-gfx803-7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd.zip
fix for live progress breaking lowvram and medvram optimizations
Diffstat (limited to 'webui.py')
-rw-r--r--webui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.py b/webui.py
index b6037365..d20ff38f 100644
--- a/webui.py
+++ b/webui.py
@@ -127,7 +127,7 @@ def wrap_gradio_gpu_call(func):
shared.state.job_no = 0
shared.state.current_latent = None
shared.state.current_image = None
- shared.state.current_progress_index = 0
+ shared.state.current_image_sampling_step = 0
with queue_lock:
res = func(*args, **kwargs)