aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/input-manager.c
diff options
context:
space:
mode:
authorLibravatar Luofan Chen <clfbbn@gmail.com>2024-03-01 11:43:14 +0800
committerLibravatar Simon Ser <contact@emersion.fr>2024-03-01 09:53:43 +0100
commit2058209a130f5051b59d8ebb24196409695deaaf (patch)
tree867fea97c4b4d78a61da441192286c7563faf3fa /sway/input/input-manager.c
parentipc: add `scratchpad_state` property to GET_TREE (diff)
downloadsway-2058209a130f5051b59d8ebb24196409695deaaf.tar.gz
sway-2058209a130f5051b59d8ebb24196409695deaaf.tar.zst
sway-2058209a130f5051b59d8ebb24196409695deaaf.zip
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.c2
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) {
111 return "keyboard"; 111 return "keyboard";
112 case WLR_INPUT_DEVICE_TOUCH: 112 case WLR_INPUT_DEVICE_TOUCH:
113 return "touch"; 113 return "touch";
114 case WLR_INPUT_DEVICE_TABLET_TOOL: 114 case WLR_INPUT_DEVICE_TABLET:
115 return "tablet_tool"; 115 return "tablet_tool";
116 case WLR_INPUT_DEVICE_TABLET_PAD: 116 case WLR_INPUT_DEVICE_TABLET_PAD:
117 return "tablet_pad"; 117 return "tablet_pad";