aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput/tablet_tool.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-11-15 18:57:16 +0100
committerSimon Ser <contact@emersion.fr>2020-11-15 18:57:16 +0100
commitaaa3fcf66fdfd6d23a88a715b33f89c5c89d3edd (patch)
tree2a7b3a5f42c1941fe2c1009ed529a06c53de8032 /backend/libinput/tablet_tool.c
parent2eae9ec7c8b3f972f99cd34ab641bd9bc5e55589 (diff)
backend/libinput: require libinput 1.14
We have the policy of requiring up-to-date dependencies instead of adding conditionals for older versions. libinput 1.14 was published more than 1 year ago.
Diffstat (limited to 'backend/libinput/tablet_tool.c')
-rw-r--r--backend/libinput/tablet_tool.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/backend/libinput/tablet_tool.c b/backend/libinput/tablet_tool.c
index 845ef220..e07491d1 100644
--- a/backend/libinput/tablet_tool.c
+++ b/backend/libinput/tablet_tool.c
@@ -113,10 +113,8 @@ static enum wlr_tablet_tool_type wlr_type_from_libinput_type(
return WLR_TABLET_TOOL_TYPE_MOUSE;
case LIBINPUT_TABLET_TOOL_TYPE_LENS:
return WLR_TABLET_TOOL_TYPE_LENS;
-#if LIBINPUT_MINOR >= 14
case LIBINPUT_TABLET_TOOL_TYPE_TOTEM:
return WLR_TABLET_TOOL_TYPE_TOTEM;
-#endif
}
abort(); // unreachable
}