diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-12 09:39:59 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-12 09:39:59 +0000 |
commit | 64311faa6848d641cc452115e4e1eb47d2a7b519 (patch) | |
tree | 3849ad4ca8ad7f44c8f20e3ab359578f3a4021ec /modules/shared_items.py | |
parent | 26c92f056acc795af5066779f1b8aedb8dfa983d (diff) | |
download | stable-diffusion-webui-gfx803-64311faa6848d641cc452115e4e1eb47d2a7b519.tar.gz stable-diffusion-webui-gfx803-64311faa6848d641cc452115e4e1eb47d2a7b519.tar.bz2 stable-diffusion-webui-gfx803-64311faa6848d641cc452115e4e1eb47d2a7b519.zip |
put refiner into main UI, into the new accordions section
add VAE from main model into infotext, not from refiner model
option to make scripts UI without gr.Group
fix inconsistencies with refiner when usings samplers that do more denoising than steps
Diffstat (limited to 'modules/shared_items.py')
-rw-r--r-- | modules/shared_items.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/shared_items.py b/modules/shared_items.py index e4ec40a8..754166d2 100644 --- a/modules/shared_items.py +++ b/modules/shared_items.py @@ -69,8 +69,8 @@ def reload_hypernetworks(): ui_reorder_categories_builtin_items = [
"inpaint",
"sampler",
+ "accordions",
"checkboxes",
- "hires_fix",
"dimensions",
"cfg",
"seed",
@@ -86,7 +86,7 @@ def ui_reorder_categories(): sections = {}
for script in scripts.scripts_txt2img.scripts + scripts.scripts_img2img.scripts:
- if isinstance(script.section, str):
+ if isinstance(script.section, str) and script.section not in ui_reorder_categories_builtin_items:
sections[script.section] = 1
yield from sections
|