summaryrefslogtreecommitdiffstats
path: root/cmd-select-layout.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-14 22:14:22 +0000
committernicm <nicm>2016-10-14 22:14:22 +0000
commited971268be7cfd5a4a8223211401654b30a57cbd (patch)
treeced6a43b231a88614d2419c9b16b8dc914e82b61 /cmd-select-layout.c
parentd413a945acd9ffbc5d34a4d459b82721e648541d (diff)
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
Diffstat (limited to 'cmd-select-layout.c')
-rw-r--r--cmd-select-layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd-select-layout.c b/cmd-select-layout.c
index 48d2ac30..4ecafc5c 100644
--- a/cmd-select-layout.c
+++ b/cmd-select-layout.c
@@ -37,7 +37,7 @@ const struct cmd_entry cmd_select_layout_entry = {
.tflag = CMD_WINDOW,
- .flags = 0,
+ .flags = CMD_AFTERHOOK,
.exec = cmd_select_layout_exec
};
@@ -50,7 +50,7 @@ const struct cmd_entry cmd_next_layout_entry = {
.tflag = CMD_WINDOW,
- .flags = 0,
+ .flags = CMD_AFTERHOOK,
.exec = cmd_select_layout_exec
};
@@ -63,7 +63,7 @@ const struct cmd_entry cmd_previous_layout_entry = {
.tflag = CMD_WINDOW,
- .flags = 0,
+ .flags = CMD_AFTERHOOK,
.exec = cmd_select_layout_exec
};