Spaces:
Runtime error
Runtime error
Old-Fat-Boy
commited on
Commit
•
a053e6b
1
Parent(s):
fd23ac5
Update app.py
Browse files
app.py
CHANGED
@@ -88,7 +88,7 @@ with gr.Blocks(title = "Old Fat Boy").queue() as demo:
|
|
88 |
with gr.Column(scale=1, min_width=10):
|
89 |
form_start_btn = gr.Button("Start")
|
90 |
with gr.Column(scale=1, min_width=10):
|
91 |
-
form_stop_btn = gr.Button("
|
92 |
|
93 |
|
94 |
form_draw_interval_number = gr.Number(
|
@@ -115,7 +115,7 @@ with gr.Blocks(title = "Old Fat Boy").queue() as demo:
|
|
115 |
with gr.Column(scale=1, min_width=10):
|
116 |
form_start_btn = gr.Button("Start")
|
117 |
with gr.Column(scale=1, min_width=10):
|
118 |
-
form_stop_btn = gr.Button("
|
119 |
|
120 |
|
121 |
form_draw_interval_number = gr.Number(
|
@@ -142,7 +142,7 @@ with gr.Blocks(title = "Old Fat Boy").queue() as demo:
|
|
142 |
with gr.Column(scale=1, min_width=10):
|
143 |
form_start_btn = gr.Button("Start")
|
144 |
with gr.Column(scale=1, min_width=10):
|
145 |
-
form_stop_btn = gr.Button("
|
146 |
|
147 |
form_draw_interval_number = gr.Number(
|
148 |
#value=global_state.value["draw_interval"],
|
@@ -150,8 +150,8 @@ with gr.Blocks(title = "Old Fat Boy").queue() as demo:
|
|
150 |
interactive=True,
|
151 |
visible=False,
|
152 |
)
|
153 |
-
|
154 |
-
|
155 |
if __name__ == "__main__":
|
156 |
demo.launch(share=False, debug=True, favicon_path='oldfatboy.png')
|
157 |
|
|
|
88 |
with gr.Column(scale=1, min_width=10):
|
89 |
form_start_btn = gr.Button("Start")
|
90 |
with gr.Column(scale=1, min_width=10):
|
91 |
+
form_stop_btn = gr.Button("Stop")
|
92 |
|
93 |
|
94 |
form_draw_interval_number = gr.Number(
|
|
|
115 |
with gr.Column(scale=1, min_width=10):
|
116 |
form_start_btn = gr.Button("Start")
|
117 |
with gr.Column(scale=1, min_width=10):
|
118 |
+
form_stop_btn = gr.Button("Stop")
|
119 |
|
120 |
|
121 |
form_draw_interval_number = gr.Number(
|
|
|
142 |
with gr.Column(scale=1, min_width=10):
|
143 |
form_start_btn = gr.Button("Start")
|
144 |
with gr.Column(scale=1, min_width=10):
|
145 |
+
form_stop_btn = gr.Button("Stop")
|
146 |
|
147 |
form_draw_interval_number = gr.Number(
|
148 |
#value=global_state.value["draw_interval"],
|
|
|
150 |
interactive=True,
|
151 |
visible=False,
|
152 |
)
|
153 |
+
apply_btn = gr.Button("Apply")
|
154 |
+
|
155 |
if __name__ == "__main__":
|
156 |
demo.launch(share=False, debug=True, favicon_path='oldfatboy.png')
|
157 |
|