Jonas Wiesli commited on
Commit
99163bf
1 Parent(s): 64a8d23

fixed solving box layout

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -60,10 +60,10 @@ with gr.Blocks() as iface:
60
  characterImage = gr.Label(label="")
61
  i += 1
62
 
63
- with gr.Row(visible="false") as solvingBox:
64
  i = 0
65
  while i < len(roles):
66
- with gr.Column():
67
  finishButton = gr.Button(roles[i])
68
  i += 1
69
 
 
60
  characterImage = gr.Label(label="")
61
  i += 1
62
 
63
+ with gr.Row(visible=False) as solvingBox:
64
  i = 0
65
  while i < len(roles):
66
+ with gr.Column(scale=1):
67
  finishButton = gr.Button(roles[i])
68
  i += 1
69