rename config apply cmds

This commit is contained in:
Tony Crisci 2017-12-16 12:14:24 -05:00
parent f4a5a0ead4
commit f16aa3c0ad
20 changed files with 37 additions and 22 deletions

View file

@ -1,5 +1,6 @@
#include <stdlib.h>
#include <string.h>
#include "sway/config.h"
#include "sway/commands.h"
#include "sway/input/input-manager.h"
@ -22,6 +23,6 @@ struct cmd_results *input_cmd_pointer_accel(int argc, char **argv) {
}
new_config->pointer_accel = pointer_accel;
input_cmd_apply(new_config);
apply_input_config(new_config);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}