diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-04-25 20:28:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-04-25 20:28:13 +0000 |
commit | d529e7e14e4afa86a312ebac773682cfa3e58368 (patch) | |
tree | 9ae1c0a6e79c27b25d3dcfcd04e3a4dceba5583c /cmd-select-layout.c | |
parent | 6769115df2f6f7a9ffc17d7d74f3064ccc2ce663 (diff) | |
download | rtmux-d529e7e14e4afa86a312ebac773682cfa3e58368.tar.gz rtmux-d529e7e14e4afa86a312ebac773682cfa3e58368.tar.bz2 rtmux-d529e7e14e4afa86a312ebac773682cfa3e58368.zip |
Add a tiled layout, originally from Liam Bedford a while ago, fixed up
by me.
Diffstat (limited to 'cmd-select-layout.c')
-rw-r--r-- | cmd-select-layout.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd-select-layout.c b/cmd-select-layout.c index 2988a44f..fd66578c 100644 --- a/cmd-select-layout.c +++ b/cmd-select-layout.c @@ -59,6 +59,9 @@ cmd_select_layout_init(struct cmd *self, int key) case ('4' | KEYC_ESCAPE): data->arg = xstrdup("main-vertical"); break; + case ('5' | KEYC_ESCAPE): + data->arg = xstrdup("tiled"); + break; } } |