summaryrefslogtreecommitdiffstats
path: root/cmd-select-layout.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-05-14 14:16:37 +0000
committerTiago Cunha <tcunha@gmx.com>2010-05-14 14:16:37 +0000
commit701b5bdf616c450cf353b90edf5b4a8f73486896 (patch)
treeff2041ad229ee6792c5d9ddac447d22d0691bac1 /cmd-select-layout.c
parent4e120c00f7179b6d284df9cc83efe909f10c509a (diff)
Sync OpenBSD patchset 688:
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.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd-select-layout.c b/cmd-select-layout.c
index c4f96926..5e3e7c02 100644
--- a/cmd-select-layout.c
+++ b/cmd-select-layout.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-select-layout.c,v 1.10 2009-12-04 22:14:47 tcunha Exp $ */
+/* $Id: cmd-select-layout.c,v 1.11 2010-05-14 14:16:37 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -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;
}
}