diff options
author | Nathan Vegdahl | 2021-07-26 18:19:10 +0000 |
---|---|---|
committer | Nathan Vegdahl | 2021-07-26 18:19:10 +0000 |
commit | f62ec6e51e99dce9e93600801c3637c196c592b6 (patch) | |
tree | 8821ee23ade21c0da4fbb5a70143717ac42a2bc1 /helix-term/src/ui/info.rs | |
parent | 5ee6ba5b38ebeb86006bb2e42734a2285eb354df (diff) | |
parent | 88d6f652390922b389667f469b6d308db569bdaf (diff) |
Merge branch 'master' into great_line_ending_and_cursor_range_cleanup
Diffstat (limited to 'helix-term/src/ui/info.rs')
-rw-r--r-- | helix-term/src/ui/info.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/info.rs b/helix-term/src/ui/info.rs index e5f20562..36b096db 100644 --- a/helix-term/src/ui/info.rs +++ b/helix-term/src/ui/info.rs @@ -8,7 +8,7 @@ impl Component for Info { fn render(&self, viewport: Rect, surface: &mut Surface, cx: &mut Context) { let style = cx.editor.theme.get("ui.popup"); let block = Block::default() - .title(self.title) + .title(self.title.as_str()) .borders(Borders::ALL) .border_style(style); let Info { width, height, .. } = self; |