Skip to content

Commit

Permalink
Replace S and R with corresponding ASCII arrows in bandwidth column (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
eupn authored and hashmap committed May 24, 2019
1 parent f9c5505 commit 9f28e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/tui/peers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl TableViewItem<PeerColumn> for PeerStats {
PeerColumn::Address => self.addr.clone(),
PeerColumn::State => self.state.clone(),
PeerColumn::UsedBandwidth => format!(
"S: {}, R: {}",
": {}, : {}",
size_to_string(self.sent_bytes_per_sec),
size_to_string(self.received_bytes_per_sec),
)
Expand Down

0 comments on commit 9f28e6a

Please sign in to comment.