diff options
author | innovaciones <sonygarcia99@gmail.com> | 2022-09-22 20:21:18 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-23 05:33:08 +0000 |
commit | ebf19c1145e9674e1627f2d75d12ac764b84b799 (patch) | |
tree | d5a82d87cbf5515dc806c466af735067b229fc97 | |
parent | a2d084a07c324231ffb650cb1f426af13d782516 (diff) | |
download | stable-diffusion-webui-gfx803-ebf19c1145e9674e1627f2d75d12ac764b84b799.tar.gz stable-diffusion-webui-gfx803-ebf19c1145e9674e1627f2d75d12ac764b84b799.tar.bz2 stable-diffusion-webui-gfx803-ebf19c1145e9674e1627f2d75d12ac764b84b799.zip |
Show interrupt button without progress bar
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index cbdbfe74..34c0a5e1 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -200,7 +200,7 @@ def check_progress_call(): else:
preview_visibility = gr_show(True)
- return f"<span style='display: none'>{time.time()}</span><p>{progressbar}</p>", preview_visibility, image
+ return f"<span id'progressSpan' style='display: none'>{time.time()}</span><p>{progressbar}</p>", preview_visibility, image
def check_progress_call_initial():
|