diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-03 19:46:57 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-03 20:31:13 +0000 |
commit | 20549a50cb3c41868ce561c6658bfaa0d20ac7ba (patch) | |
tree | 789d872fc05f12633125c37c0ce88f6a4df8e597 /modules/ui_extra_networks_hypernets.py | |
parent | 8e840e151917892af8d8681781b231a1fc47d404 (diff) | |
download | stable-diffusion-webui-gfx803-20549a50cb3c41868ce561c6658bfaa0d20ac7ba.tar.gz stable-diffusion-webui-gfx803-20549a50cb3c41868ce561c6658bfaa0d20ac7ba.tar.bz2 stable-diffusion-webui-gfx803-20549a50cb3c41868ce561c6658bfaa0d20ac7ba.zip |
add style editor dialog
rework toprow for img2img and txt2img to use a class with fields
fix the console error when editing checkpoint user metadata
Diffstat (limited to 'modules/ui_extra_networks_hypernets.py')
-rw-r--r-- | modules/ui_extra_networks_hypernets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui_extra_networks_hypernets.py b/modules/ui_extra_networks_hypernets.py index e53ccb42..514a4562 100644 --- a/modules/ui_extra_networks_hypernets.py +++ b/modules/ui_extra_networks_hypernets.py @@ -11,7 +11,7 @@ class ExtraNetworksPageHypernetworks(ui_extra_networks.ExtraNetworksPage): def refresh(self):
shared.reload_hypernetworks()
- def create_item(self, name, index=None):
+ def create_item(self, name, index=None, enable_filter=True):
full_path = shared.hypernetworks[name]
path, ext = os.path.splitext(full_path)
|