[BACK]Return to cmd-select-pane.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-select-pane.c between version 1.49 and 1.50

version 1.49, 2019/04/26 11:38:51 version 1.50, 2019/04/30 06:21:30
Line 66 
Line 66 
          */           */
   
         TAILQ_FOREACH(c, &clients, entry) {          TAILQ_FOREACH(c, &clients, entry) {
                 if (c->session == NULL)                  if (c->session == NULL || (c->flags & CLIENT_CONTROL))
                         continue;                          continue;
                 if (c->session->curw->window == w && tty_window_bigger(&c->tty))                  if (c->session->curw->window == w && tty_window_bigger(&c->tty))
                         server_redraw_client(c);                          server_redraw_client(c);

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50