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

Diff for /src/usr.bin/tmux/input-keys.c between version 1.62 and 1.63

version 1.62, 2017/06/28 11:36:39 version 1.63, 2018/10/18 08:38:01
Line 248 
Line 248 
   
         if ((mode & ALL_MOUSE_MODES) == 0)          if ((mode & ALL_MOUSE_MODES) == 0)
                 return;                  return;
         if (!window_pane_visible(wp))  
                 return;  
         if (cmd_mouse_at(wp, m, &x, &y, 0) != 0)          if (cmd_mouse_at(wp, m, &x, &y, 0) != 0)
                   return;
           if (!window_pane_visible(wp))
                 return;                  return;
   
         /* If this pane is not in button or all mode, discard motion events. */          /* If this pane is not in button or all mode, discard motion events. */

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63