diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-29 05:58:29 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-29 05:58:29 +0000 |
commit | 22bcc7be428c94e9408f589966c2040187245d81 (patch) | |
tree | 852906658b061c3fad262129bef1fa0710485c0e | |
parent | 3856ada5cc9ac4124e20ff311ce7aa77330845d9 (diff) | |
download | stable-diffusion-webui-gfx803-22bcc7be428c94e9408f589966c2040187245d81.tar.gz stable-diffusion-webui-gfx803-22bcc7be428c94e9408f589966c2040187245d81.tar.bz2 stable-diffusion-webui-gfx803-22bcc7be428c94e9408f589966c2040187245d81.zip |
attempted fix for infinite loading for settings that some people experience
-rw-r--r-- | modules/ui.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index eb5fcd3f..627fbe0b 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1628,6 +1628,7 @@ def create_ui(): fn=get_settings_values,
inputs=[],
outputs=[component_dict[k] for k in component_keys],
+ queue=False,
)
def modelmerger(*args):
|