Hermes Bot commited on
Commit ·
2e63f2b
1
Parent(s): 5ece202
Fix indentation in Inpaint UI to resolve runtime error
Browse files- ui/shared/inpaint_ui.py +3 -3
ui/shared/inpaint_ui.py
CHANGED
|
@@ -34,9 +34,9 @@ def create_ui():
|
|
| 34 |
scale=3,
|
| 35 |
allow_custom_value=True
|
| 36 |
)
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
|
| 41 |
components[f'model_and_run_row_{prefix}'] = [arch_row, model_and_run_row]
|
| 42 |
|
|
|
|
| 34 |
scale=3,
|
| 35 |
allow_custom_value=True
|
| 36 |
)
|
| 37 |
+
with gr.Column(scale=1):
|
| 38 |
+
components[f'run_{prefix}'] = gr.Button("Run Inpaint", variant="primary")
|
| 39 |
+
components[f'run_forever_{prefix}'] = gr.Checkbox(label="Run Forever", value=False)
|
| 40 |
|
| 41 |
components[f'model_and_run_row_{prefix}'] = [arch_row, model_and_run_row]
|
| 42 |
|