Spaces:
Running
on
Zero
Running
on
Zero
fix bug
Browse files
app.py
CHANGED
@@ -208,7 +208,7 @@ def ui():
|
|
208 |
prompt_textbox = gr.Textbox(label="Prompt", lines=2)
|
209 |
negative_prompt_textbox = gr.Textbox(label="Negative prompt", lines=2)
|
210 |
|
211 |
-
with gr.Row(
|
212 |
with gr.Column():
|
213 |
with gr.Row():
|
214 |
sampler_dropdown = gr.Dropdown(label="Sampling method", choices=list(scheduler_dict.keys()), value=list(scheduler_dict.keys())[0])
|
|
|
208 |
prompt_textbox = gr.Textbox(label="Prompt", lines=2)
|
209 |
negative_prompt_textbox = gr.Textbox(label="Negative prompt", lines=2)
|
210 |
|
211 |
+
with gr.Row(equal_height=False):
|
212 |
with gr.Column():
|
213 |
with gr.Row():
|
214 |
sampler_dropdown = gr.Dropdown(label="Sampling method", choices=list(scheduler_dict.keys()), value=list(scheduler_dict.keys())[0])
|