Rawal Khirodkar commited on
Commit
908f3ea
·
1 Parent(s): bece70e

Pointmap: drop equal_height on row 2 so Run button doesn't stretch to match depth image

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -456,8 +456,9 @@ with gr.Blocks(title="Sapiens2 Pointmap", theme=gr.themes.Soft(), css=CUSTOM_CSS
456
  scale=3,
457
  )
458
 
459
- # Row 2: controls under the input, depth heatmap directly under the 3D mesh
460
- with gr.Row(equal_height=True):
 
461
  with gr.Column(scale=2):
462
  size = gr.Radio(
463
  choices=["0.4B"], # iteration mode — re-add other sizes when shipping
 
456
  scale=3,
457
  )
458
 
459
+ # Row 2: controls under the input, depth heatmap directly under the 3D mesh.
460
+ # NOT equal_height — otherwise the depth image (640px) stretches the Run button.
461
+ with gr.Row():
462
  with gr.Column(scale=2):
463
  size = gr.Radio(
464
  choices=["0.4B"], # iteration mode — re-add other sizes when shipping