From beb3c0fa09206a6c0c59e2a51095f90a126d62db Mon Sep 17 00:00:00 2001 From: John Lindgren Date: Thu, 21 Aug 2025 00:23:07 -0400 Subject: [PATCH] config: add comment to enum lab_motion --- include/config/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/config/types.h b/include/config/types.h index e8277463..246c7527 100644 --- a/include/config/types.h +++ b/include/config/types.h @@ -33,6 +33,10 @@ enum lab_edge { LAB_EDGE_DOWNRIGHT = (LAB_EDGE_DOWN | LAB_EDGE_RIGHT), }; +/** + * Indicates whether tablet tool motion events should be reported using + * absolute or relative coordinates + */ enum lab_motion { LAB_MOTION_ABSOLUTE = 0, LAB_MOTION_RELATIVE, -- 2.52.0