luh1124 commited on
Commit
1aa9f70
Β·
1 Parent(s): 71ce4de

ui: move vid_roll to top-right row, restore vid_hdri below vid_cam

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -776,15 +776,13 @@ def build_app() -> gr.Blocks:
776
 
777
  with gr.Row():
778
  mesh_view = gr.Model3D(label="β‘  Geometry", height=250)
779
- vid_hdri = gr.Video(label="β‘’ HDRI rotation",
780
  autoplay=True, loop=True, height=250)
781
 
782
  vid_cam = gr.Video(label="β‘’ Camera orbit",
783
  autoplay=True, loop=True, height=250)
784
-
785
- with gr.Accordion("HDRI env roll", open=False):
786
- vid_roll = gr.Video(label="β‘’ HDRI env roll",
787
- autoplay=True, loop=True, height=180)
788
 
789
  # ── RIGHT: examples sidebar ───────────────────────────────────────
790
  with gr.Column(scale=2, min_width=160, elem_classes=["sidebar-examples"]):
 
776
 
777
  with gr.Row():
778
  mesh_view = gr.Model3D(label="β‘  Geometry", height=250)
779
+ vid_roll = gr.Video(label="β‘’ HDRI env roll",
780
  autoplay=True, loop=True, height=250)
781
 
782
  vid_cam = gr.Video(label="β‘’ Camera orbit",
783
  autoplay=True, loop=True, height=250)
784
+ vid_hdri = gr.Video(label="β‘’ HDRI rotation",
785
+ autoplay=True, loop=True, height=250)
 
 
786
 
787
  # ── RIGHT: examples sidebar ───────────────────────────────────────
788
  with gr.Column(scale=2, min_width=160, elem_classes=["sidebar-examples"]):