config: add comment to enum lab_motion

This commit is contained in:
John Lindgren 2025-08-21 00:23:07 -04:00
parent c5934bcce7
commit 80f77464a9

View file

@ -33,6 +33,10 @@ enum lab_edge {
LAB_EDGE_DOWNRIGHT = (LAB_EDGE_DOWN | LAB_EDGE_RIGHT), 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 { enum lab_motion {
LAB_MOTION_ABSOLUTE = 0, LAB_MOTION_ABSOLUTE = 0,
LAB_MOTION_RELATIVE, LAB_MOTION_RELATIVE,