Closed MMP0 closed 1 year ago
https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/c9c8485bc1e8720aba70f029d25cba1c4abf2b5c/javascript/progressbar.js#L76C34-L76C34
If requestProgress is called before the options are loaded, opts.show_progressbar will be undefined (falsy) and the progress bars will not be shown, so delay progress requests until they are loaded.
requestProgress
opts.show_progressbar
undefined
https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/c9c8485bc1e8720aba70f029d25cba1c4abf2b5c/javascript/progressbar.js#L76C34-L76C34
If
requestProgress
is called before the options are loaded,opts.show_progressbar
will beundefined
(falsy) and the progress bars will not be shown, so delay progress requests until they are loaded.