mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31:08 +03:00
Replace S and R with corresponding ASCII arrows in bandwidth column (#2836)
This commit is contained in:
parent
f9c5505e9f
commit
9f28e6aaa3
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ impl TableViewItem<PeerColumn> for PeerStats {
|
||||||
PeerColumn::Address => self.addr.clone(),
|
PeerColumn::Address => self.addr.clone(),
|
||||||
PeerColumn::State => self.state.clone(),
|
PeerColumn::State => self.state.clone(),
|
||||||
PeerColumn::UsedBandwidth => format!(
|
PeerColumn::UsedBandwidth => format!(
|
||||||
"S: {}, R: {}",
|
"↑: {}, ↓: {}",
|
||||||
size_to_string(self.sent_bytes_per_sec),
|
size_to_string(self.sent_bytes_per_sec),
|
||||||
size_to_string(self.received_bytes_per_sec),
|
size_to_string(self.received_bytes_per_sec),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue