Update app.py
Browse files
app.py
CHANGED
|
@@ -752,26 +752,26 @@ with gr.Blocks(css=css) as interface:
|
|
| 752 |
info = gr.Markdown(value="...")
|
| 753 |
|
| 754 |
with gr.Row():
|
| 755 |
-
swap_button = gr.Button("π Swap", variant="primary",interactive=
|
| 756 |
-
cancel_button = gr.Button("π Cancel",interactive=
|
| 757 |
|
| 758 |
-
preview_image = gr.Image(label="Output", interactive=
|
| 759 |
preview_video = gr.Video(
|
| 760 |
-
label="Output", interactive=
|
| 761 |
)
|
| 762 |
|
| 763 |
with gr.Row():
|
| 764 |
output_directory_button = gr.Button(
|
| 765 |
-
"π", interactive=False, visible=
|
| 766 |
)
|
| 767 |
output_video_button = gr.Button(
|
| 768 |
-
"π", interactive=False, visible=
|
| 769 |
)
|
| 770 |
|
| 771 |
with gr.Group():
|
| 772 |
with gr.Row():
|
| 773 |
gr.Markdown(
|
| 774 |
-
"##
|
| 775 |
)
|
| 776 |
|
| 777 |
|
|
|
|
| 752 |
info = gr.Markdown(value="...")
|
| 753 |
|
| 754 |
with gr.Row():
|
| 755 |
+
swap_button = gr.Button("π Swap", variant="primary",interactive=True)
|
| 756 |
+
cancel_button = gr.Button("π Cancel",interactive=True)
|
| 757 |
|
| 758 |
+
preview_image = gr.Image(label="Output", interactive=True)
|
| 759 |
preview_video = gr.Video(
|
| 760 |
+
label="Output", interactive=True, visible=False
|
| 761 |
)
|
| 762 |
|
| 763 |
with gr.Row():
|
| 764 |
output_directory_button = gr.Button(
|
| 765 |
+
"π", interactive=False, visible=True
|
| 766 |
)
|
| 767 |
output_video_button = gr.Button(
|
| 768 |
+
"π", interactive=False, visible=True
|
| 769 |
)
|
| 770 |
|
| 771 |
with gr.Group():
|
| 772 |
with gr.Row():
|
| 773 |
gr.Markdown(
|
| 774 |
+
"## HELLO"
|
| 775 |
)
|
| 776 |
|
| 777 |
|