mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-26 06:46:45 -04:00
fix: wrong color member in underline rendering
This commit is contained in:
parent
133e23b9d2
commit
7b666b2aad
1 changed files with 1 additions and 1 deletions
2
render.c
2
render.c
|
|
@ -631,7 +631,7 @@ render_cell(struct terminal *term, pixman_image_t *pix, pixman_region32_t *damag
|
|||
case COLOR_BASE16:
|
||||
case COLOR_BASE256:
|
||||
xassert(cell->attrs.ul < ALEN(term->colors.table));
|
||||
_ul = term->colors.table[cell->attrs.bg];
|
||||
_ul = term->colors.table[cell->attrs.ul];
|
||||
break;
|
||||
|
||||
case COLOR_DEFAULT:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue