diff options
author | CodeHatchling <steve@codehatch.com> | 2023-12-04 23:06:58 +0000 |
---|---|---|
committer | CodeHatchling <steve@codehatch.com> | 2023-12-04 23:06:58 +0000 |
commit | 976c1053efeb5054692ed3cfa294cf79196f3946 (patch) | |
tree | ade353c78f7d409d188bb8292226d2531eeb2bee /modules/ui.py | |
parent | 259d33c3c8e27557cb9bab9b3a1dd7fc7450d16c (diff) | |
download | stable-diffusion-webui-gfx803-976c1053efeb5054692ed3cfa294cf79196f3946.tar.gz stable-diffusion-webui-gfx803-976c1053efeb5054692ed3cfa294cf79196f3946.tar.bz2 stable-diffusion-webui-gfx803-976c1053efeb5054692ed3cfa294cf79196f3946.zip |
Cleaned up code, moved main code contributions into soft_inpainting.py
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/ui.py b/modules/ui.py index 0e4fb17a..4f1265a3 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -683,13 +683,6 @@ def create_ui(): with FormRow():
soft_inpainting = si.gradio_ui()
-
- """
- mask_blend_power = gr.Slider(label='Blending bias', minimum=0, maximum=8, step=0.1, value=1, elem_id="img2img_mask_blend_power")
- mask_blend_scale = gr.Slider(label='Blending preservation', minimum=0, maximum=8, step=0.05, value=0.5, elem_id="img2img_mask_blend_scale")
- inpaint_detail_preservation = gr.Slider(label='Blending contrast boost', minimum=1, maximum=32, step=0.5, value=4, elem_id="img2img_mask_blend_offset")
- """
-
with FormRow():
inpainting_mask_invert = gr.Radio(label='Mask mode', choices=['Inpaint masked', 'Inpaint not masked'], value='Inpaint masked', type="index", elem_id="img2img_mask_mode")
|