Skip to content

Commit

Permalink
up to 1 place
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-tworek committed Dec 18, 2023
1 parent ce047aa commit e87a579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/app/rtp_streams_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ impl RtpStreamsTable {
ui.label(format!("{:.3}", bitrate));
});
row.col(|ui| {
let packet_rate = stream.get_mean_packet_rate();
ui.label(format!("{:.3}", packet_rate));
let packet_rate = stream.get_mean_packet_rate() ;
ui.label(format!("{:.1}", packet_rate));
});
let (_, resp) = row.col(|ui| {
build_jitter_plot(ui, stream);
Expand Down

0 comments on commit e87a579

Please sign in to comment.