<html>
<head>
<base href="https://bugs.freedesktop.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_ASSIGNED "
title="ASSIGNED - Touchpad does not feel "right", acceleration issue"
href="https://bugs.freedesktop.org/show_bug.cgi?id=90735#c26">Comment # 26</a>
on <a class="bz_bug_link
bz_status_ASSIGNED "
title="ASSIGNED - Touchpad does not feel "right", acceleration issue"
href="https://bugs.freedesktop.org/show_bug.cgi?id=90735">bug 90735</a>
from <span class="vcard"><a class="email" href="mailto:peter.hutterer@who-t.net" title="Peter Hutterer <peter.hutterer@who-t.net>"> <span class="fn">Peter Hutterer</span></a>
</span></b>
<pre>Finally starting to pick this up again. I have some complaints about slow
movements not being right, so I wonder if dropping deceleration is the right
idea. Simple patch to try out, it may be the right step, please let me know.
diff --git a/src/filter.c b/src/filter.c
index 0bb066c..5aec7df 100644
--- a/src/filter.c
+++ b/src/filter.c
@@ -662,6 +662,9 @@ touchpad_accel_profile_linear(struct motion_filter *filter,
factor = pointer_accel_profile_linear(filter, data, speed_in, time);
+ /* Disable deceleration */
+ factor = max(factor, 1.0);
+
return factor * TP_MAGIC_SLOWDOWN;
}</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>