inputstr: _GestureInfo 344 -> 336 (num_touches set max 255)
This commit is contained in:
parent
21a8bf07c5
commit
e060305502
|
@ -342,12 +342,12 @@ typedef struct _GestureListener {
|
||||||
typedef struct _GestureInfo {
|
typedef struct _GestureInfo {
|
||||||
int sourceid; /* Source device's ID for this gesture */
|
int sourceid; /* Source device's ID for this gesture */
|
||||||
Bool active; /* whether or not the gesture is active */
|
Bool active; /* whether or not the gesture is active */
|
||||||
|
uint8_t num_touches; /* The number of touches in the gesture */
|
||||||
uint8_t type; /* Gesture type: either ET_GesturePinchBegin or
|
uint8_t type; /* Gesture type: either ET_GesturePinchBegin or
|
||||||
ET_GestureSwipeBegin. Valid if active == TRUE */
|
ET_GestureSwipeBegin. Valid if active == TRUE */
|
||||||
int num_touches; /* The number of touches in the gesture */
|
Bool has_listener; /* true if listener has been setup already */
|
||||||
SpriteRec sprite; /* window trace for delivery */
|
SpriteRec sprite; /* window trace for delivery */
|
||||||
GestureListener listener; /* the listener that will receive events */
|
GestureListener listener; /* the listener that will receive events */
|
||||||
Bool has_listener; /* true if listener has been setup already */
|
|
||||||
} GestureInfoRec;
|
} GestureInfoRec;
|
||||||
|
|
||||||
typedef struct _GestureClassRec {
|
typedef struct _GestureClassRec {
|
||||||
|
|
Loading…
Reference in New Issue