Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/ui/info.rs')
-rw-r--r--helix-term/src/ui/info.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/helix-term/src/ui/info.rs b/helix-term/src/ui/info.rs
index 1cac7c86..651e5ca9 100644
--- a/helix-term/src/ui/info.rs
+++ b/helix-term/src/ui/info.rs
@@ -3,7 +3,7 @@ use helix_view::graphics::{Margin, Rect};
use helix_view::info::Info;
use tui::buffer::Buffer as Surface;
use tui::text::Text;
-use tui::widgets::{Block, Paragraph, Widget};
+use tui::widgets::{Block, Borders, Paragraph, Widget};
impl Component for Info {
fn render(&mut self, viewport: Rect, surface: &mut Surface, cx: &mut Context) {
@@ -23,12 +23,13 @@ impl Component for Info {
));
surface.clear_with(area, popup_style);
- let block = Block::bordered()
- .title(self.title.as_ref())
+ let block = Block::default()
+ .title(self.title.as_str())
+ .borders(Borders::ALL)
.border_style(popup_style);
let margin = Margin::horizontal(1);
- let inner = block.inner(area).inner(margin);
+ let inner = block.inner(area).inner(&margin);
block.render(area, surface);
Paragraph::new(&Text::from(self.text.as_str()))