[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.27 and 1.28

version 1.27, 2017/02/08 16:45:18 version 1.28, 2017/02/16 12:43:08
Line 194 
Line 194 
   
         sx = grid_view_x(gd, gd->sx);          sx = grid_view_x(gd, gd->sx);
   
         if (px == sx - 1)          if (px >= sx - 1)
                 grid_clear(gd, px, py, 1, 1, bg);                  grid_clear(gd, px, py, 1, 1, bg);
         else          else
                 grid_move_cells(gd, px + nx, px, py, sx - px - nx, bg);                  grid_move_cells(gd, px + nx, px, py, sx - px - nx, bg);

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28