mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-14 08:01:09 +01:00
Merge pull request #46 from Luminarys/master
Minor naming fix workspace changing commands
This commit is contained in:
commit
d64bff69bb
1 changed files with 2 additions and 2 deletions
|
@ -354,12 +354,12 @@ static bool cmd_workspace(struct sway_config *config, int argc, char **argv) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle workspace output_next/prev
|
// Handle workspace output_next/prev
|
||||||
if (strcmp(argv[0], "output_next") == 0) {
|
if (strcmp(argv[0], "next_on_output") == 0) {
|
||||||
workspace_output_next();
|
workspace_output_next();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(argv[0], "output_prev") == 0) {
|
if (strcmp(argv[0], "prev_on_output") == 0) {
|
||||||
workspace_output_prev();
|
workspace_output_prev();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue