diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-28 19:05:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-28 19:05:59 -0400 |
commit | e4ad534ab41b01a08b6b4f19aa47805f6040f7b4 (patch) | |
tree | e29b0788e128fb8fb228fa5dc8af24a0f47cd887 /rootston/input.c | |
parent | 262c3b1638d42012d6be9ce9f5a3f4c2f7cdaae1 (diff) | |
parent | 10240af6ea2e3cef474c2e79e9ca220f028cce2d (diff) |
Merge pull request #167 from emersion/xwayland
[WIP] Improve xwayland
Diffstat (limited to 'rootston/input.c')
-rw-r--r-- | rootston/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/input.c b/rootston/input.c index ac8e7396..b4427212 100644 --- a/rootston/input.c +++ b/rootston/input.c @@ -52,10 +52,10 @@ static void input_remove_notify(struct wl_listener *listener, void *data) { struct roots_input *input = wl_container_of(listener, input, input_remove); switch (device->type) { case WLR_INPUT_DEVICE_KEYBOARD: - //keyboard_remove(device, input); + keyboard_remove(device, input); break; case WLR_INPUT_DEVICE_POINTER: - //pointer_remove(device, input); + pointer_remove(device, input); break; case WLR_INPUT_DEVICE_TOUCH: //touch_remove(device, input); |