mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
render: always damage two cells when rendering the cursor
Hack to render cursor-at-double-width-characters correctly. Should be replaced with something better.
This commit is contained in:
parent
4a01be5522
commit
67b4b9401d
1 changed files with 1 additions and 1 deletions
2
render.c
2
render.c
|
|
@ -558,7 +558,7 @@ grid_render(struct terminal *term)
|
|||
term->wl.surface,
|
||||
term->cursor.col * term->cell_width,
|
||||
view_aligned_row * term->cell_height,
|
||||
term->cell_width, term->cell_height);
|
||||
2 * term->cell_width, term->cell_height);
|
||||
}
|
||||
|
||||
if (all_clean) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue