rename input to input-manager

This commit is contained in:
Tony Crisci 2017-12-07 07:31:49 -05:00
parent 338a0399f8
commit 21ce20885a
5 changed files with 12 additions and 9 deletions

View file

@ -11,7 +11,7 @@
// TODO WLR: make Xwayland optional
#include <wlr/xwayland.h>
#include "sway/server.h"
#include "sway/input.h"
#include "sway/input-manager.h"
#include "log.h"
bool server_init(struct sway_server *server) {
@ -60,7 +60,7 @@ bool server_init(struct sway_server *server) {
return false;
}
server->input = sway_input_create(server);
server->input = sway_input_manager_create(server);
return true;
}