Skip to content

Commit

Permalink
Merge branch 'master' into alt_buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
jerch committed Nov 8, 2018
2 parents cb616fa + 70981c7 commit c31e063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,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;
Expand Down

0 comments on commit c31e063

Please sign in to comment.