Merge pull request #42 from GeorgLegato/Upscalers_SettingImprov

Upscalers setting improv -> move on to develop branch
pull/46/head
GeorgLegato 2023-04-20 04:20:07 +02:00 committed by GitHub
commit 106a22bb46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -740,7 +740,7 @@ def on_ui_settings():
shared.opts.add_option(
"infzoom_txt2img_model",
shared.OptionInfo(
shared.list_checkpoint_tiles[0],
None,
"Name of your desired model to render keyframes (txt2img)",
gr.Dropdown,
lambda: {"choices": shared.list_checkpoint_tiles()},
@ -751,7 +751,7 @@ def on_ui_settings():
shared.opts.add_option(
"infzoom_inpainting_model",
shared.OptionInfo(
"sd-v1-5-inpainting.ckpt",
None,
"Name of your desired inpaint model (img2img-inpaint). Default is vanilla sd-v1-5-inpainting.ckpt ",
gr.Dropdown,
lambda: {"choices": shared.list_checkpoint_tiles()},

View File

@ -1,4 +1,9 @@
#tab_iz_interface .gradio-dataframe .controls-wrap {
flex-direction: row-reverse;
justify-content: space-between;
}
/* first column min width */
#tab_iz_interface th {
width: 0;
}