From 6e71355ee291bd8353081b238544999e8dca0975 Mon Sep 17 00:00:00 2001 From: Chengyu Zheng Date: Mon, 23 Apr 2018 18:12:31 +0200 Subject: [PATCH] fix output resolution parsing error --- sway/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/commands.c b/sway/commands.c index 6af3c5d0c..f75c21f0c 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -322,7 +322,7 @@ struct cmd_results *execute_command(char *_exec, struct sway_seat *seat) { cmdlist += strspn(cmdlist, whitespace); do { // Split commands - cmd = argsep(&cmdlist, ","); + cmd = argsep(&cmdlist, ";"); cmd += strspn(cmd, whitespace); if (strcmp(cmd, "") == 0) { wlr_log(L_INFO, "Ignoring empty command.");