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

Diff for /src/usr.bin/tmux/screen-write.c between version 1.213 and 1.214

version 1.213, 2023/02/10 14:01:43 version 1.214, 2023/03/27 08:31:32
Line 132 
Line 132 
 {  {
         struct window_pane      *wp = ttyctx->arg;          struct window_pane      *wp = ttyctx->arg;
   
           if (ttyctx->allow_invisible_panes) {
                   if (session_has(c->session, wp->window))
                           return (1);
                   return (0);
           }
   
         if (c->session->curw->window != wp->window)          if (c->session->curw->window != wp->window)
                 return (0);                  return (0);
         if (wp->layout_cell == NULL)          if (wp->layout_cell == NULL)

Legend:
Removed from v.1.213  
changed lines
  Added in v.1.214