feat: add None for 1st tap

This commit is contained in:
Bingsu
2023-05-25 23:43:49 +09:00
parent 55594a9ea6
commit 51b8e040a6
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
__version__ = "23.5.18"
__version__ = "23.5.19.dev0"

View File

@@ -105,7 +105,7 @@ def one_ui_group(
eid = partial(elem_id, n=n, is_img2img=is_img2img)
with gr.Row():
model_choices = model_list if n == 0 else ["None"] + model_list
model_choices = model_list + ["None"] if n == 0 else ["None"] + model_list
w.ad_model = gr.Dropdown(
label="ADetailer model" + suffix(n),