mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-01 07:15:32 -04:00
render: last_cursor.cell must not be const
This commit is contained in:
parent
efdb69f2d8
commit
3b36fb9d74
1 changed files with 1 additions and 1 deletions
|
|
@ -332,7 +332,7 @@ struct terminal {
|
||||||
struct {
|
struct {
|
||||||
struct coord actual; /* Absolute */
|
struct coord actual; /* Absolute */
|
||||||
struct coord in_view; /* Offset by view */
|
struct coord in_view; /* Offset by view */
|
||||||
const struct cell *cell; /* For easy access to content */
|
struct cell *cell; /* For easy access to content */
|
||||||
} last_cursor;
|
} last_cursor;
|
||||||
|
|
||||||
struct buffer *last_buf; /* Buffer we rendered to last time */
|
struct buffer *last_buf; /* Buffer we rendered to last time */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue