aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/info.rs
diff options
context:
space:
mode:
authorIvan Tham2021-06-30 13:39:21 +0000
committerBlaž Hrastnik2021-07-04 09:01:59 +0000
commit6710855eac4826ffdc77d22901b010ae20bbaf3e (patch)
tree2be85d970cd4c7aff92a2f9dabc9d371f6c69020 /helix-term/src/ui/info.rs
parent9effe71b7d2133f18545d182cef384ea3fd1c0ff (diff)
Fix rendering issues for infobox
Diffstat (limited to 'helix-term/src/ui/info.rs')
-rw-r--r--helix-term/src/ui/info.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/helix-term/src/ui/info.rs b/helix-term/src/ui/info.rs
index c5709356..87c2c213 100644
--- a/helix-term/src/ui/info.rs
+++ b/helix-term/src/ui/info.rs
@@ -6,14 +6,19 @@ use tui::widgets::{Block, Borders, Widget};
impl Component for Info {
fn render(&self, viewport: Rect, surface: &mut Surface, cx: &mut Context) {
- let block = Block::default().title(self.title).borders(Borders::ALL);
+ let style = cx.editor.theme.get("ui.popup");
+ let block = Block::default()
+ .title(self.title)
+ .borders(Borders::ALL)
+ .border_style(style);
let Info { width, height, .. } = self;
let (w, h) = (*width + 2, *height + 2);
// -2 to subtract command line + statusline. a bit of a hack, because of splits.
let area = Rect::new(viewport.width - w, viewport.height - h - 2, w, h);
+ surface.clear_with(area, style);
let Rect { x, y, .. } = block.inner(area);
for (y, line) in (y..).zip(self.text.lines()) {
- surface.set_string(x, y, line, Style::default());
+ surface.set_string(x, y, line, style);
}
block.render(area, surface);
}