[BACK]Return to grid-view.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/grid-view.c between version 1.19 and 1.20

version 1.19, 2014/11/12 22:59:45 version 1.20, 2014/12/01 22:22:14
Line 184 
Line 184 
         px = grid_view_x(gd, px);          px = grid_view_x(gd, px);
         py = grid_view_y(gd, py);          py = grid_view_y(gd, py);
   
         sx = grid_view_x(gd, gd->linedata[py].cellsize);          if (gd->linedata[py].cellsize + nx < gd->sx)
         if (sx < px + nx)                  sx = grid_view_x(gd, gd->linedata[py].cellsize + nx);
                 sx = px + nx;          else
                   sx = grid_view_x(gd, gd->sx);
   
         if (px == sx - 1)          if (px == sx - 1)
                 grid_clear(gd, px, py, 1, 1);                  grid_clear(gd, px, py, 1, 1);

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20