mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
feat: shift the type to the left
_
This commit is contained in:
parent
810ac6023e
commit
7e9bf8a3bb
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ impl EditorView {
|
|||
|
||||
for (lines_drawn, (line, align)) in lines.iter().enumerate() {
|
||||
let x = match align {
|
||||
Align::Left => x_start_left,
|
||||
Align::Left => x_start_left + 4,
|
||||
Align::Center => view.area.x + view.area.width / 2 - line.width() as u16 / 2,
|
||||
};
|
||||
surface.set_spans(x, y_start + lines_drawn as u16, line, line.width() as u16);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue