aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-16 16:52:47 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-16 16:52:47 -0400
commitd64bff69bbc13c15ed0d2d1cdbce9709046ff818 (patch)
treec3706ffa5725471e4a81901c833b8c3f23f4cb31 /sway/commands.c
parent7f4529ec8b6362ef36ce546cfe34d816f1b708f0 (diff)
parent6b80879ec92b14e26fb4b9aea0dddfbf8e19ba08 (diff)
Merge pull request #46 from Luminarys/master
Minor naming fix workspace changing commands
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c
index d4f588de..f0db4ed2 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -354,12 +354,12 @@ static bool cmd_workspace(struct sway_config *config, int argc, char **argv) {
}
// Handle workspace output_next/prev
- if (strcmp(argv[0], "output_next") == 0) {
+ if (strcmp(argv[0], "next_on_output") == 0) {
workspace_output_next();
return true;
}
- if (strcmp(argv[0], "output_prev") == 0) {
+ if (strcmp(argv[0], "prev_on_output") == 0) {
workspace_output_prev();
return true;
}