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 <string.h>
#include <strings.h>
#include "sway/config.h"
#include "sway/commands.h"
#include "sway/input/input-manager.h"
#include "log.h"
@ -27,6 +28,6 @@ struct cmd_results *input_cmd_tap(int argc, char **argv) {
sway_log(L_DEBUG, "apply-tap 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);
}