mirror of
https://github.com/mimblewimble/grin.git
synced 2025-05-12 04:01:15 +03:00
Move 3 dots to the TUI
This commit is contained in:
parent
2873d14a98
commit
383d35950e
1 changed files with 2 additions and 2 deletions
|
@ -241,7 +241,7 @@ impl TUIStatusListener for TUIStatusView {
|
|||
t.set_content(stats.peer_count.to_string());
|
||||
});
|
||||
c.call_on_id("tip_hash", |t: &mut TextView| {
|
||||
t.set_content(stats.head.last_block_h.to_string());
|
||||
t.set_content(stats.head.last_block_h.to_string() + "...");
|
||||
});
|
||||
c.call_on_id("chain_height", |t: &mut TextView| {
|
||||
t.set_content(stats.head.height.to_string());
|
||||
|
@ -250,7 +250,7 @@ impl TUIStatusListener for TUIStatusView {
|
|||
t.set_content(stats.head.total_difficulty.to_string());
|
||||
});
|
||||
c.call_on_id("basic_header_tip_hash", |t: &mut TextView| {
|
||||
t.set_content(stats.header_head.last_block_h.to_string());
|
||||
t.set_content(stats.header_head.last_block_h.to_string() + "...");
|
||||
});
|
||||
c.call_on_id("basic_header_chain_height", |t: &mut TextView| {
|
||||
t.set_content(stats.header_head.height.to_string());
|
||||
|
|
Loading…
Add table
Reference in a new issue