mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Refactor new Rect construction (#575)
* Refactor new Rect construction Introduces methods that can be chained to construct new Rects out of pre-existing ones * Clamp x and y to edges in Rect chop methods * Rename Rect clipping functions
This commit is contained in:
parent
ac8bc54108
commit
f9375f449c
6 changed files with 119 additions and 53 deletions
|
@ -13,7 +13,7 @@ use helix_core::{
|
|||
Rope,
|
||||
};
|
||||
use helix_view::{
|
||||
graphics::{Color, Rect, Style},
|
||||
graphics::{Color, Margin, Rect, Style},
|
||||
Theme,
|
||||
};
|
||||
|
||||
|
@ -207,8 +207,11 @@ impl Component for Markdown {
|
|||
.wrap(Wrap { trim: false })
|
||||
.scroll((cx.scroll.unwrap_or_default() as u16, 0));
|
||||
|
||||
let area = Rect::new(area.x + 1, area.y + 1, area.width - 2, area.height - 2);
|
||||
par.render(area, surface);
|
||||
let margin = Margin {
|
||||
vertical: 1,
|
||||
horizontal: 1,
|
||||
};
|
||||
par.render(area.inner(&margin), surface);
|
||||
}
|
||||
|
||||
fn required_size(&mut self, viewport: (u16, u16)) -> Option<(u16, u16)> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue