summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-16 16:52:47 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-16 16:52:47 -0400
commitd64bff69bbc13c15ed0d2d1cdbce9709046ff818 (patch)
treec3706ffa5725471e4a81901c833b8c3f23f4cb31
parentMerge pull request #44 from Luminarys/master (diff)
parentMinor naming fix workspace changing commands (diff)
downloadsway-d64bff69bbc13c15ed0d2d1cdbce9709046ff818.tar.gz
sway-d64bff69bbc13c15ed0d2d1cdbce9709046ff818.tar.zst
sway-d64bff69bbc13c15ed0d2d1cdbce9709046ff818.zip
Merge pull request #46 from Luminarys/master
Minor naming fix workspace changing commands
-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) {
354 } 354 }
355 355
356 // Handle workspace output_next/prev 356 // Handle workspace output_next/prev
357 if (strcmp(argv[0], "output_next") == 0) { 357 if (strcmp(argv[0], "next_on_output") == 0) {
358 workspace_output_next(); 358 workspace_output_next();
359 return true; 359 return true;
360 } 360 }
361 361
362 if (strcmp(argv[0], "output_prev") == 0) { 362 if (strcmp(argv[0], "prev_on_output") == 0) {
363 workspace_output_prev(); 363 workspace_output_prev();
364 return true; 364 return true;
365 } 365 }