aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/seat.c')
-rw-r--r--sway/commands/seat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands/seat.c b/sway/commands/seat.c
index 819b769c..5916015f 100644
--- a/sway/commands/seat.c
+++ b/sway/commands/seat.c
@@ -40,6 +40,8 @@ struct cmd_results *cmd_seat(int argc, char **argv) {
40 struct cmd_results *res; 40 struct cmd_results *res;
41 if (strcasecmp("attach", argv[1]) == 0) { 41 if (strcasecmp("attach", argv[1]) == 0) {
42 res = seat_cmd_attach(argc_new, argv_new); 42 res = seat_cmd_attach(argc_new, argv_new);
43 } else if (strcasecmp("cursor", argv[1]) == 0) {
44 res = seat_cmd_cursor(argc_new, argv_new);
43 } else if (strcasecmp("fallback", argv[1]) == 0) { 45 } else if (strcasecmp("fallback", argv[1]) == 0) {
44 res = seat_cmd_fallback(argc_new, argv_new); 46 res = seat_cmd_fallback(argc_new, argv_new);
45 } else { 47 } else {