mirror of
https://github.com/vladmandic/automatic
synced 2026-09-18 16:54:33 +02:00
update networks list
Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
+2
-1
@@ -13,7 +13,8 @@
|
||||
- **UI**
|
||||
- improved image scaling in img2img and control interfaces
|
||||
- add base model type to networks display, thanks @Artheriax
|
||||
- add additional hints to ui
|
||||
- additional hints to ui, thanks @Artheriax
|
||||
- additional artwork for reference models in networks, thanks @liutyi
|
||||
- **Fixes**
|
||||
- normalize path hanlding when deleting images
|
||||
- fix hidden model tags in networks display
|
||||
|
||||
Submodule extensions-builtin/sdnext-modernui updated: 6470d3cc3d...90a7560df3
@@ -276,7 +276,11 @@ class ExtraNetworksPage:
|
||||
if len(subdir) == 0:
|
||||
continue
|
||||
style = 'color: var(--color-accent)' if subdir in ['All', 'Local', 'Diffusers', 'Reference'] else ''
|
||||
subdirs_html += f'<button class="lg secondary gradio-button custom-button" onclick="extraNetworksSearchButton(event)" style="{style}">{html.escape(subdir)}</button><br>'
|
||||
if subdir in ['All', 'Local', 'Diffusers', 'Reference']:
|
||||
style = 'network-reference'
|
||||
else:
|
||||
style = 'network-folder'
|
||||
subdirs_html += f'<button class="lg secondary gradio-button custom-button {style}" onclick="extraNetworksSearchButton(event)">{html.escape(subdir)}</button><br>'
|
||||
self.html = ''
|
||||
self.create_items(tabname)
|
||||
self.create_xyz_grid()
|
||||
|
||||
Reference in New Issue
Block a user