summaryrefslogtreecommitdiffstats
path: root/src/display/components/total_bandwidth.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/display/components/total_bandwidth.rs')
-rw-r--r--src/display/components/total_bandwidth.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/display/components/total_bandwidth.rs b/src/display/components/total_bandwidth.rs
index ba78d2d..4a7ae9d 100644
--- a/src/display/components/total_bandwidth.rs
+++ b/src/display/components/total_bandwidth.rs
@@ -2,7 +2,7 @@ use ::tui::backend::Backend;
use ::tui::layout::{Alignment, Rect};
use ::tui::style::{Color, Modifier, Style};
use ::tui::terminal::Frame;
-use ::tui::widgets::{Block, Borders, Paragraph, Text, Widget};
+use ::tui::widgets::{Paragraph, Text, Widget};
use crate::display::{DisplayBandwidth, UIState};
@@ -32,7 +32,6 @@ impl<'a> TotalBandwidth<'a> {
)]
};
Paragraph::new(title_text.iter())
- .block(Block::default().borders(Borders::NONE))
.alignment(Alignment::Left)
.render(frame, rect);
}