From 187f0ab1c4d24cf64d5db2b1ecf09b08b5a58c7a Mon Sep 17 00:00:00 2001 From: "S. Christoffer Eliesen" Date: Fri, 23 Oct 2015 12:45:46 +0200 Subject: [PATCH] commands: Allow 'floating_modifier' & 'focus_follows_mouse' at runtime. --- sway/commands.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sway/commands.c b/sway/commands.c index 4b11886e..50a6e941 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -323,7 +323,6 @@ static struct cmd_results *cmd_floating(int argc, char **argv) { static struct cmd_results *cmd_floating_mod(int argc, char **argv) { struct cmd_results *error = NULL; - if (!config->reading) return cmd_results_new(CMD_FAILURE, "floating_modifier", "Can only be used in config file."); if ((error = checkarg(argc, "floating_modifier", EXPECTED_EQUAL_TO, 1))) { return error; } @@ -408,7 +407,6 @@ static struct cmd_results *cmd_focus(int argc, char **argv) { static struct cmd_results *cmd_focus_follows_mouse(int argc, char **argv) { struct cmd_results *error = NULL; - if (!config->reading) return cmd_results_new(CMD_FAILURE, "focus_follows_mouse", "Can only be used in config file."); if ((error = checkarg(argc, "focus_follows_mouse", EXPECTED_EQUAL_TO, 1))) { return error; }