-l should apply to the new not the old pane with -b, from "MadMaverick9"

on GitHub.
pull/121/head
nicm 2015-09-18 09:55:22 +00:00
parent 8b5d5dca9f
commit 6b709e655e
1 changed files with 4 additions and 0 deletions

View File

@ -686,6 +686,8 @@ layout_split_pane(
case LAYOUT_LEFTRIGHT:
if (size < 0)
size2 = ((sx + 1) / 2) - 1;
else if (insert_before)
size2 = sx - size - 1;
else
size2 = size;
if (size2 < PANE_MINIMUM)
@ -699,6 +701,8 @@ layout_split_pane(
case LAYOUT_TOPBOTTOM:
if (size < 0)
size2 = ((sy + 1) / 2) - 1;
else if (insert_before)
size2 = sy - size - 1;
else
size2 = size;
if (size2 < PANE_MINIMUM)