From 6dab00aa5417f62f8c2c85c7c4ae871b4f1171f4 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 20 May 2022 13:45:59 +0100 Subject: patch 8.2.4984: dragging statusline fails for window with winbar Problem: Dragging statusline fails for window with winbar. Solution: Fix off-by-one error. (closes #10448) --- src/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mouse.c') diff --git a/src/mouse.c b/src/mouse.c index af9186d72f..58c4ab4ec6 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -1823,7 +1823,7 @@ retnomove: if (dragwin != NULL) { // Drag the status line - count = row - dragwin->w_winrow - dragwin->w_height + 1 + count = row - W_WINROW(dragwin) - dragwin->w_height + 1 - on_status_line; win_drag_status_line(dragwin, count); did_drag |= count; -- cgit v1.2.3