diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-18 08:14:42 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-18 08:14:42 +0000 |
commit | 3f29aa791bceea0b0de99263dd0a7f08c0551549 (patch) | |
tree | 5eb9b04951fbb6b50ea0afe134bac1b1330bec86 /javascript/ui.js | |
parent | b273458d2d37ec59f61d5008bbfb7be2c3013850 (diff) | |
download | stable-diffusion-webui-gfx803-3f29aa791bceea0b0de99263dd0a7f08c0551549.tar.gz stable-diffusion-webui-gfx803-3f29aa791bceea0b0de99263dd0a7f08c0551549.tar.bz2 stable-diffusion-webui-gfx803-3f29aa791bceea0b0de99263dd0a7f08c0551549.zip |
altered progressbar to not rely on first progress request coming after the job has started; may help with broken progressbar some people say they have
Diffstat (limited to 'javascript/ui.js')
-rw-r--r-- | javascript/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/ui.js b/javascript/ui.js index e649dc6e..c39e96a1 100644 --- a/javascript/ui.js +++ b/javascript/ui.js @@ -37,7 +37,7 @@ function extract_image_from_gallery_extras(gallery){ function submit(){ // this calls a function from progressbar.js - window.setTimeout(requestProgress, 500) + requestProgress() res = [] for(var i=0;i<arguments.length;i++){ |