Skip to content

Commit

Permalink
SSRC in hex
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-tworek committed Nov 25, 2023
1 parent acf3251 commit 420441b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/app/rtp_streams_plot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ impl RtpStreamsPlot {

fn options_ui(&mut self, ui: &mut Ui) {
ui.horizontal(|ui| {
ui.add_space(12.0);
ui.vertical(|ui| {
self.reset_button(ui);
self.axis_settings(ui);
Expand Down Expand Up @@ -565,7 +566,7 @@ fn build_on_hover_text(
) -> String {
let mut on_hover = String::new();

on_hover.push_str(&format!("Alias: {} (SSRC: {})", stream.alias, stream.ssrc));
on_hover.push_str(&format!("Alias: {} (SSRC: {:x})", stream.alias, stream.ssrc));
on_hover.push('\n');
on_hover.push_str(&format!(
"Source: {}\nDestination: {}\n",
Expand Down

0 comments on commit 420441b

Please sign in to comment.