diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-06-26 21:02:26 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-06-26 21:02:26 +0100 |
commit | c4a92999563e20617f949ac781f1465843fb088c (patch) | |
tree | 7ba618100c5c7611c67192c20718786ada482ef2 /window.c | |
parent | f797ac9ff6cd18b9f5737bea80fbf58dc5b5729b (diff) | |
parent | 3a6d90adadfcd4aa6b513df7f8ae5c4dcc05a6dc (diff) | |
download | rtmux-c4a92999563e20617f949ac781f1465843fb088c.tar.gz rtmux-c4a92999563e20617f949ac781f1465843fb088c.tar.bz2 rtmux-c4a92999563e20617f949ac781f1465843fb088c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1369,7 +1369,7 @@ window_pane_find_down(struct window_pane *wp) if (edge >= w->sy - 1) edge = 0; } else { - if (edge >= wp->sy) + if (edge >= w->sy) edge = 0; } |