aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2014-12-19 06:37:14 +0000
committerStephen Blott2014-12-19 06:37:14 +0000
commit7a99764137d600dc65e76da5093e91d2ecd5eaeb (patch)
tree1fc59084726653ab33cd8207b8107273bc1be12e
parent4d1b448511b5ce643b90b35d5693bca8b0ffcd73 (diff)
downloadvimium-7a99764137d600dc65e76da5093e91d2ecd5eaeb.tar.bz2
Disable cursor hider.
See #1359. There appear to be common cases where the cursor hider doesn't hide the cursor. So the UX is inconsistent. We need to consider whether this is fixable or acceptable.
-rw-r--r--content_scripts/vimium_frontend.coffee4
1 files changed, 4 insertions, 0 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index 21a05de6..8d8a67e4 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -1123,6 +1123,10 @@ CursorHider =
CursorHider.isScrolling = false
init: ->
+ # Temporarily disabled pending consideration of #1359 (in particular, whether cursor hiding is too fragile
+ # as to provide a consistent UX).
+ return
+
# Disable cursor hiding for Chrome versions less than 39.0.2171.71 due to a suspected browser error.
# See #1345 and #1348.
return unless Utils.haveChromeVersion "39.0.2171.71"