Another fix for insertion from Balazs Kezes. On insertion, size the line

just enough for the inserted characters.
pull/1/head
nicm 2014-12-01 22:22:14 +00:00
parent c8bf8ee931
commit e52d791212
1 changed files with 4 additions and 3 deletions

View File

@ -184,9 +184,10 @@ grid_view_insert_cells(struct grid *gd, u_int px, u_int py, u_int nx)
px = grid_view_x(gd, px);
py = grid_view_y(gd, py);
sx = grid_view_x(gd, gd->linedata[py].cellsize);
if (sx < px + nx)
sx = px + nx;
if (gd->linedata[py].cellsize + nx < gd->sx)
sx = grid_view_x(gd, gd->linedata[py].cellsize + nx);
else
sx = grid_view_x(gd, gd->sx);
if (px == sx - 1)
grid_clear(gd, px, py, 1, 1);