diff options
author | Luofan Chen <clfbbn@gmail.com> | 2024-03-01 11:43:14 +0800 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2024-03-01 09:53:43 +0100 |
commit | 2058209a130f5051b59d8ebb24196409695deaaf (patch) | |
tree | 867fea97c4b4d78a61da441192286c7563faf3fa /sway/input/input-manager.c | |
parent | 0b84d82b9aad05010479140774ac5ee1fea8ea97 (diff) |
input: Rename WLR_INPUT_DEVICE_TABLET_TOOL to WLR_INPUT_DEVICE_TABLET
wlroots has changed the naming, causing the following build errors when
building:
error: ‘WLR_INPUT_DEVICE_TABLET_TOOL’ undeclared
Diffstat (limited to 'sway/input/input-manager.c')
-rw-r--r-- | sway/input/input-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c index 9ee635af..056cc3ea 100644 --- a/sway/input/input-manager.c +++ b/sway/input/input-manager.c @@ -111,7 +111,7 @@ const char *input_device_get_type(struct sway_input_device *device) { return "keyboard"; case WLR_INPUT_DEVICE_TOUCH: return "touch"; - case WLR_INPUT_DEVICE_TABLET_TOOL: + case WLR_INPUT_DEVICE_TABLET: return "tablet_tool"; case WLR_INPUT_DEVICE_TABLET_PAD: return "tablet_pad"; |