From 66b5477cc1909e57489f854939a524ce2cd0f479 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 10 Oct 2016 17:28:30 +0000 Subject: Do not allow the opposite pane to resize when dragging with the mouse because it is not possible to keep the mouse on the border when the minimum size is reached. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 1789ec2c..21802854 100644 --- a/tmux.h +++ b/tmux.h @@ -2217,7 +2217,7 @@ void layout_init(struct window *, struct window_pane *); void layout_free(struct window *); void layout_resize(struct window *, u_int, u_int); void layout_resize_pane(struct window_pane *, enum layout_type, - int); + int, int); void layout_resize_pane_to(struct window_pane *, enum layout_type, u_int); void layout_assign_pane(struct layout_cell *, struct window_pane *); -- cgit