config: add comment to enum lab_motion

This commit is contained in:
John Lindgren 2025-08-21 00:23:07 -04:00 committed by Hiroaki Yamamoto
parent 9d49d19cd2
commit beb3c0fa09

View file

@ -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,