Skip to content

Commit

Permalink
fix gradio warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
runew0lf committed Aug 23, 2023
1 parent 4d24ab7 commit e9e8296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def generate_clicked(*args):

with gr.Row():
img2img_mode = gr.Checkbox(
scale=0.2, label="Image 2 Image", value=settings["img2img_mode"], elem_classes="type_small_row"
label="Image 2 Image", value=settings["img2img_mode"], elem_classes="type_small_row"
)
load_images_button = gr.UploadButton(
label="Load Image(s)",
Expand Down Expand Up @@ -179,7 +179,7 @@ def refresh_seed(r, s):
variant="secondary",
elem_classes="refresh_button",
)
with gr.Tab(label="Advanced", open=False):
with gr.Tab(label="Advanced"):
save_metadata = gr.Checkbox(label="Save Metadata", value=settings["save_metadata"])
img2img_start_step = gr.Slider(
label="Image 2 Image Start Step",
Expand Down

0 comments on commit e9e8296

Please sign in to comment.