From f6e014d00c0bf28d663cbb883c76b55cfee6499a Mon Sep 17 00:00:00 2001 From: Benjamin Stover Date: Mon, 19 Oct 2009 17:38:32 -0400 Subject: [PATCH] Bug 523223: Regression: kinetic panning is stalled [r=mark.finkle] --- mobile/chrome/content/InputHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/chrome/content/InputHandler.js b/mobile/chrome/content/InputHandler.js index 9071dffa653d..cab62958fdb4 100644 --- a/mobile/chrome/content/InputHandler.js +++ b/mobile/chrome/content/InputHandler.js @@ -1101,7 +1101,7 @@ KineticController.prototype = { if ((mbLast.sx == sx && mbLast.sy == sy) || mbLast.t == now) { mbLast.sx = sx; mbLast.sy = sy; - mbLast.t = t; + mbLast.t = now; return; } }