]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Allow wheel events in application mode
authorDaniel Imms <daimms@microsoft.com>
Sun, 25 Sep 2016 09:40:24 +0000 (02:40 -0700)
committerDaniel Imms <daimms@microsoft.com>
Sun, 25 Sep 2016 09:42:46 +0000 (02:42 -0700)
This change allows wheel events in application mode which fixes mouse wheel
scrolling in oh-my-zsh and powershell for Linux (among others). Along with #287
a functional scroll bar will also be usable in those shells.

Fixes #151

src/xterm.js

index bc0de0431a3593b3cfcdfa9b418a3ea6472b06b2..828a74ff37847203fbdaa2606c833cf7e87d78fd 100644 (file)
@@ -1017,7 +1017,6 @@ Terminal.prototype.bindMouse = function() {
   // the shell for example
   on(el, 'wheel', function(ev) {
     if (self.mouseEvents) return;
-    if (self.applicationKeypad) return;
     self.viewport.onWheel(ev);
     return self.cancel(ev);
   });