diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-22 06:49:51 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-22 06:49:59 +0000 |
commit | ee65e729319e4184fc0d49552657e98aa0e28f17 (patch) | |
tree | f50f8846a7345f3c5177945b1ef02226eff952f7 /modules/ui.py | |
parent | 0cbcc4d82899f8f95493975e9e79f16748105448 (diff) | |
download | stable-diffusion-webui-gfx803-ee65e729319e4184fc0d49552657e98aa0e28f17.tar.gz stable-diffusion-webui-gfx803-ee65e729319e4184fc0d49552657e98aa0e28f17.tar.bz2 stable-diffusion-webui-gfx803-ee65e729319e4184fc0d49552657e98aa0e28f17.zip |
repair file paste for Firefox from #10615
remove animation when pasting files into prompt
rework two dragdrop js files into one
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index e62182da..001b9792 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -616,7 +616,8 @@ def create_ui(): outputs=[
txt2img_prompt,
txt_prompt_img
- ]
+ ],
+ show_progress=False,
)
enable_hr.change(
@@ -902,7 +903,8 @@ def create_ui(): outputs=[
img2img_prompt,
img2img_prompt_img
- ]
+ ],
+ show_progress=False,
)
img2img_args = dict(
|