Merge pull request #9579 from bfredl/pum_fix

popupmenu: fix alignment of kind and extra after #9530
This commit is contained in:
Björn Linse
2019-02-03 22:17:28 +01:00
committed by GitHub
2 changed files with 52 additions and 1 deletions

View File

@@ -517,7 +517,7 @@ void pum_redraw(void)
} else {
grid_fill(&pum_grid, row, row + 1, col,
col_off + pum_base_width + n, ' ', ' ', attr);
col = pum_base_width + n;
col = col_off + pum_base_width + n;
}
totwidth = pum_base_width + n;
}