Merge pull request #289 from Tyriar/151_allow_wheel_in_application_mode

Allow wheel events in application mode
This commit is contained in:
Daniel Imms 2016-09-25 04:44:53 -07:00 committed by GitHub
commit 8bf8147028

View 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);
});