From: John Lindgren Date: Thu, 21 Aug 2025 04:23:07 +0000 (-0400) Subject: config: add comment to enum lab_motion X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=beb3c0fa09206a6c0c59e2a51095f90a126d62db;p=proto%2Flabwc.git config: add comment to enum lab_motion --- 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,