ui/compositor: add redraws needed due to intersected doublewidth chars.

This commit is contained in:
Björn Linse
2019-01-24 21:37:38 +01:00
parent 2405cf8255
commit 69bdc4f072
9 changed files with 99 additions and 68 deletions

View File

@@ -363,7 +363,7 @@ void pum_redraw(void)
if (!pum_grid.chars
|| pum_grid.Rows != pum_height || pum_grid.Columns != grid_width) {
grid_alloc(&pum_grid, pum_height, grid_width, !moved);
grid_alloc(&pum_grid, pum_height, grid_width, !moved, false);
ui_call_grid_resize(pum_grid.handle, pum_grid.Columns, pum_grid.Rows);
} else if (moved) {
grid_invalidate(&pum_grid);