aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/ui/editor.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index fe4e3439..af1d8af8 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -362,12 +362,14 @@ impl EditorView {
}
let paragraph = Paragraph::new(lines).alignment(Alignment::Right);
+ let width = 80.min(viewport.width);
+ let height = 15.min(viewport.height);
paragraph.render(
Rect::new(
- viewport.x + viewport.width - 80 - 1,
+ viewport.right() - width,
viewport.y as u16 + 1,
- 80,
- 15,
+ width,
+ height,
),
surface,
);