As the subject says: don't store any synthesised events in the motion history, since we can recreate those algorithmically.
Signed-off-by: Daniel Stone <[email protected]> --- src/synaptics.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/synaptics.c b/src/synaptics.c index 76d32f6..11a1584 100644 --- a/src/synaptics.c +++ b/src/synaptics.c @@ -2600,7 +2600,7 @@ HandleState(InputInfoPtr pInfo, struct SynapticsHwState *hw, CARD32 now, priv->lastButtons = buttons; /* generate a history of the absolute positions */ - if (inside_active_area) + if (inside_active_area && !from_timer) store_history(priv, hw->x, hw->y, hw->millis); return delay; -- 1.7.5.4 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
