diff options
author | nicm <nicm> | 2016-10-10 17:28:30 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-10-10 17:28:30 +0000 |
commit | 66b5477cc1909e57489f854939a524ce2cd0f479 (patch) | |
tree | e117e660a72ba31b41e1734a15b73ada3933f051 /tmux.h | |
parent | 7d4b416fe690b062f02097e95dbb7619a6fb05fe (diff) | |
download | rtmux-66b5477cc1909e57489f854939a524ce2cd0f479.tar.gz rtmux-66b5477cc1909e57489f854939a524ce2cd0f479.tar.bz2 rtmux-66b5477cc1909e57489f854939a524ce2cd0f479.zip |
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.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 *); |