yoyolicoris commited on
Commit
466b233
·
1 Parent(s): 9e07bd7

feat: adjust layout of reverb and T60 plots

Browse files
Files changed (1) hide show
  1. app.py +11 -4
app.py CHANGED
@@ -647,10 +647,17 @@ with gr.Blocks() as demo:
647
  delay_plot = gr.Plot(
648
  plot_delay(), label="Delay Frequency Response", elem_id="delay-plot"
649
  )
650
- reverb_plot = gr.Plot(
651
- plot_reverb(), label="Reverb Tone Correction PEQ", elem_id="reverb-plot"
652
- )
653
- t60_plot = gr.Plot(plot_t60(), label="Reverb T60", elem_id="t60-plot")
 
 
 
 
 
 
 
654
 
655
  with gr.Row():
656
  json_output = gr.JSON(
 
647
  delay_plot = gr.Plot(
648
  plot_delay(), label="Delay Frequency Response", elem_id="delay-plot"
649
  )
650
+
651
+ with gr.Row():
652
+ reverb_plot = gr.Plot(
653
+ plot_reverb(),
654
+ label="Reverb Tone Correction PEQ",
655
+ elem_id="reverb-plot",
656
+ min_width=160,
657
+ )
658
+ t60_plot = gr.Plot(
659
+ plot_t60(), label="Reverb T60", elem_id="t60-plot", min_width=160
660
+ )
661
 
662
  with gr.Row():
663
  json_output = gr.JSON(