Merge branch 'master' into fix_1778

This commit is contained in:
Jörg Breitbart
2018-11-09 01:07:11 +01:00
+1 -1
View File
@@ -985,7 +985,7 @@ export class Terminal extends EventEmitter implements ITerminal, IDisposable, II
: 65;
break;
case 'wheel':
button = (<WheelEvent>ev).wheelDeltaY > 0
button = (<WheelEvent>ev).deltaY < 0
? 64
: 65;
break;