mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
Merge branch 'master' into releases/1.16
This commit is contained in:
commit
f1e7d78c96
2 changed files with 18 additions and 1 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
* [Unreleased](#unreleased)
|
||||
* [1.16.1](#1-16-1)
|
||||
* [1.16.0](#1-16-0)
|
||||
* [1.15.3](#1-15-3)
|
||||
|
|
@ -46,6 +47,22 @@
|
|||
* [1.2.1](#1-2-1)
|
||||
* [1.2.0](#1-2-0)
|
||||
|
||||
## Unreleased
|
||||
### Added
|
||||
### Changed
|
||||
### Deprecated
|
||||
### Removed
|
||||
### Fixed
|
||||
|
||||
* Last row and/or column of opaque sixels (not having a size that is a
|
||||
multiple of the cell size) being the wrong color ([#1520][1520]).
|
||||
|
||||
[1520]: https://codeberg.org/dnkl/foot/issues/1520
|
||||
|
||||
|
||||
### Security
|
||||
### Contributors
|
||||
|
||||
|
||||
## 1.16.1
|
||||
|
||||
|
|
|
|||
2
render.c
2
render.c
|
|
@ -1309,7 +1309,7 @@ render_sixel(struct terminal *term, pixman_image_t *pix,
|
|||
if ((last_row_needs_erase && last_row) ||
|
||||
(last_col_needs_erase && last_col))
|
||||
{
|
||||
render_cell(term, pix, damage, row, term_row_no, col, cursor_col);
|
||||
render_cell(term, pix, damage, row, term_row_no, col, cursor_col == col);
|
||||
} else {
|
||||
cell->attrs.clean = 1;
|
||||
cell->attrs.confined = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue