diff options
author | nicm <nicm> | 2018-06-24 21:24:09 +0000 |
---|---|---|
committer | nicm <nicm> | 2018-06-24 21:24:09 +0000 |
commit | dec6ec9e29033cb4739b9eec5f3a5c68dece878a (patch) | |
tree | cc99ab21a07f86351b8fc6f62076a02fa1ee0ab0 | |
parent | d0c992306d4a01804d3649648f8a1ef59cdda351 (diff) | |
download | rtmux-dec6ec9e29033cb4739b9eec5f3a5c68dece878a.tar.gz rtmux-dec6ec9e29033cb4739b9eec5f3a5c68dece878a.tar.bz2 rtmux-dec6ec9e29033cb4739b9eec5f3a5c68dece878a.zip |
Minor cosmetic improvement from KOIE Hidetaka.
-rw-r--r-- | cmd-resize-pane.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd-resize-pane.c b/cmd-resize-pane.c index 7e4c58cf..6b991aa6 100644 --- a/cmd-resize-pane.c +++ b/cmd-resize-pane.c @@ -131,12 +131,12 @@ cmd_resize_pane_mouse_update(struct client *c, struct mouse_event *m) struct winlink *wl; struct window *w; u_int y, ly, x, lx; - struct layout_cell *cells[5], *lc; - u_int ncells = 0, i, j, resizes = 0; - enum layout_type type; - static const int offsets[nitems(cells)][2] = { + static const int offsets[][2] = { { 0, 0 }, { 0, 1 }, { 1, 0 }, { 0, -1 }, { -1, 0 }, }; + struct layout_cell *cells[nitems(offsets)], *lc; + u_int ncells = 0, i, j, resizes = 0; + enum layout_type type; wl = cmd_mouse_window(m, NULL); if (wl == NULL) { |