diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-05-12 16:16:16 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-05-12 16:16:16 +0100 |
commit | 2bff5e7867b4849019df04d77ecade300c6e3dce (patch) | |
tree | e1f2724b716ff060ba7782cb763aaf056ec9bbd3 /grid.c | |
parent | 90f2a417af1d6a15435571e6512d75b7ab373c58 (diff) | |
download | rtmux-2bff5e7867b4849019df04d77ecade300c6e3dce.tar.gz rtmux-2bff5e7867b4849019df04d77ecade300c6e3dce.tar.bz2 rtmux-2bff5e7867b4849019df04d77ecade300c6e3dce.zip |
ECH needs to use background colour.
Diffstat (limited to 'grid.c')
-rw-r--r-- | grid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ grid_clear(struct grid *gd, u_int px, u_int py, u_int nx, u_int ny, u_int bg) gd->linedata[yy].cellsize = px; continue; } - grid_expand_line(gd, yy, px + nx, bg); + grid_expand_line(gd, yy, px + nx, 8); /* default bg first */ for (xx = px; xx < px + nx; xx++) grid_clear_cell(gd, xx, yy, bg); } |