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

Diff for /src/usr.bin/tmux/resize.c between version 1.31 and 1.32

version 1.31, 2019/04/17 14:43:49 version 1.32, 2019/05/11 06:34:56
Line 174 
Line 174 
         TAILQ_FOREACH(c, &clients, entry) {          TAILQ_FOREACH(c, &clients, entry) {
                 if (ignore_client_size(c))                  if (ignore_client_size(c))
                         continue;                          continue;
                 if (c->tty.sy <= status_line_size(c))                  s = c->session;
                   if (c->tty.sy <= s->statuslines || (c->flags & CLIENT_CONTROL))
                         c->flags |= CLIENT_STATUSOFF;                          c->flags |= CLIENT_STATUSOFF;
                 else                  else
                         c->flags &= ~CLIENT_STATUSOFF;                          c->flags &= ~CLIENT_STATUSOFF;
                 c->session->attached++;                  s->attached++;
         }          }
   
         /* Walk each window and adjust the size. */          /* Walk each window and adjust the size. */

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32