diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index 3d8a13aad..5c7422f09 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -900,6 +900,9 @@ int ncplane_box(ncplane* n, const cell* ul, const cell* ur, } ++yoff; } + if(ncplane_cursor_move_yx(n, yoff, xoff)){ + return -1; + } if(ncplane_putc(n, ll) < 0){ return -1; }