diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-30 15:07:49 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-30 15:07:49 +0000 |
commit | 43c87ef0fcf1771d5511004968e70f804cfd95b8 (patch) | |
tree | 02c851ce20fb014cdbaa3efc41003bce25d638b2 /modules/ui.py | |
parent | 980cd1697ae980f57399da2b90462c07d102d935 (diff) | |
download | stable-diffusion-webui-gfx803-43c87ef0fcf1771d5511004968e70f804cfd95b8.tar.gz stable-diffusion-webui-gfx803-43c87ef0fcf1771d5511004968e70f804cfd95b8.tar.bz2 stable-diffusion-webui-gfx803-43c87ef0fcf1771d5511004968e70f804cfd95b8.zip |
change default inpaint mode to original
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index ada9a38e..249b3eea 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -599,7 +599,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo, run_modelmerger): mask_mode = gr.Radio(label="Mask mode", show_label=False, choices=["Draw mask", "Upload mask"], type="index", value="Draw mask", elem_id="mask_mode")
inpainting_mask_invert = gr.Radio(label='Masking mode', show_label=False, choices=['Inpaint masked', 'Inpaint not masked'], value='Inpaint masked', type="index")
- inpainting_fill = gr.Radio(label='Masked content', choices=['fill', 'original', 'latent noise', 'latent nothing'], value='fill', type="index")
+ inpainting_fill = gr.Radio(label='Masked content', choices=['fill', 'original', 'latent noise', 'latent nothing'], value='original', type="index")
with gr.Row():
inpaint_full_res = gr.Checkbox(label='Inpaint at full resolution', value=False)
|