diff options
| author | Stephen Blott | 2015-04-05 16:54:01 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-04-05 16:54:01 +0100 |
| commit | 3e1295516025d7ca29dea9fadc9ba75aa91f4bce (patch) | |
| tree | 9e7ab00639c01376a99bdfef6ec68e75d888952d | |
| parent | 58512fd855e41d80cdcd75b1261ee967c78391e4 (diff) | |
| download | vimium-3e1295516025d7ca29dea9fadc9ba75aa91f4bce.tar.bz2 | |
Note scrolling issue #1549.
| -rw-r--r-- | content_scripts/scroller.coffee | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content_scripts/scroller.coffee b/content_scripts/scroller.coffee index 5cc3fd82..b7de5140 100644 --- a/content_scripts/scroller.coffee +++ b/content_scripts/scroller.coffee @@ -123,6 +123,9 @@ CoreScroller = @lastEvent = null @keyIsDown = false + # NOTE(smblott) With extreme keyboard configurations, Chrome sometimes does not get a keyup event for + # every keydown, in which case tapping "j" scrolls indefinitely. This appears to be a Chrome/OS/XOrg bug + # of some kind. See #1549. handlerStack.push _name: 'scroller/track-key-status' keydown: (event) => |
