diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 06:19:02 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-27 06:19:13 +0000 |
commit | 5e30f737b0a4e1c7ec450bc01c7d05f5c8a98433 (patch) | |
tree | dc04cb52f98998d077cfdfe467e68bc8e25e78e8 | |
parent | 9dd0c4add57bada7c90f55fd77e674db831fc45c (diff) | |
download | stable-diffusion-webui-gfx803-5e30f737b0a4e1c7ec450bc01c7d05f5c8a98433.tar.gz stable-diffusion-webui-gfx803-5e30f737b0a4e1c7ec450bc01c7d05f5c8a98433.tar.bz2 stable-diffusion-webui-gfx803-5e30f737b0a4e1c7ec450bc01c7d05f5c8a98433.zip |
fix for Reload UI function: if you reload UI on one tab, other opened tabs will no longer stop working
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | modules/generation_parameters_copypaste.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e78b3d2..1bbde234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -130,6 +130,7 @@ * fix error that causes some extra networks to be disabled if both <lora:> and <lyco:> are present in the prompt
* fix defaults settings page breaking when any of main UI tabs are hidden
* fix incorrect save/display of new values in Defaults page in settings
+ * fix for Reload UI function: if you reload UI on one tab, other opened tabs will no longer stop working
## 1.5.2
diff --git a/modules/generation_parameters_copypaste.py b/modules/generation_parameters_copypaste.py index 386517ac..2ca16055 100644 --- a/modules/generation_parameters_copypaste.py +++ b/modules/generation_parameters_copypaste.py @@ -32,6 +32,7 @@ class ParamBinding: def reset():
paste_fields.clear()
+ registered_param_bindings.clear()
def quote(text):
|