diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-16 12:14:24 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-12-16 12:14:24 -0500 |
commit | f16aa3c0ad8328da0820e81c99a619835f36082f (patch) | |
tree | 4f9c99cfa6304fc5f0f3c8eef2cac17541782e55 /sway/commands/input/xkb_options.c | |
parent | f4a5a0ead4c8b155985c242db1fa5de5fa4807a0 (diff) |
rename config apply cmds
Diffstat (limited to 'sway/commands/input/xkb_options.c')
-rw-r--r-- | sway/commands/input/xkb_options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/input/xkb_options.c b/sway/commands/input/xkb_options.c index 67eb5342..180f40d5 100644 --- a/sway/commands/input/xkb_options.c +++ b/sway/commands/input/xkb_options.c @@ -1,4 +1,5 @@ #define _XOPEN_SOURCE 700 +#include "sway/config.h" #include "sway/commands.h" #include "sway/input/input-manager.h" #include "log.h" @@ -19,6 +20,6 @@ struct cmd_results *input_cmd_xkb_options(int argc, char **argv) { sway_log(L_DEBUG, "apply-xkb_options for device: %s", current_input_config->identifier); - input_cmd_apply(new_config); + apply_input_config(new_config); return cmd_results_new(CMD_SUCCESS, NULL, NULL); } |