commit | dfea5c133f8cd8760f7517e3275659dd9b6f5afe | [log] [tgz] |
---|---|---|
author | Jason Sams <rjsams@android.com> | Tue Jan 19 17:46:34 2010 -0800 |
committer | Jason Sams <rjsams@android.com> | Tue Jan 19 18:08:10 2010 -0800 |
tree | 173d3fcc09b5cbbc33a5b19826318307ee3b00cd | |
parent | f5e4dd01adcc086231ab1e847ec62547626a643e [diff] |
Fix for bug 2382944. This is a very safe change that just corrects a long standing scroll speed bug in launcher.
diff --git a/res/raw/rollo3.c b/res/raw/rollo3.c index aa7e075..f3250a0 100644 --- a/res/raw/rollo3.c +++ b/res/raw/rollo3.c
@@ -106,7 +106,7 @@ if (g_LastTouchDown) { float dx = -(state->newPositionX - g_LastPositionX); g_PosVelocity = 0; - g_PosPage += dx * 4; + g_PosPage += dx * 5.2f; float pmin = -0.49f; float pmax = g_PosMax + 0.49f;