Skip to content

Commit

Permalink
Fix reference to terminal.buffer.lines
Browse files Browse the repository at this point in the history
  • Loading branch information
parisk committed Jul 9, 2017
1 parent 5cdb2d5 commit 820a44c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InputHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class InputHandler implements IInputHandler {
} else {
// The line already exists (eg. the initial viewport), mark it as a
// wrapped line
this._terminal.lines.get(this._terminal.y).isWrapped = true;
this._terminal.buffer.lines.get(this._terminal.buffer.y).isWrapped = true;
}
} else {
if (ch_width === 2) // FIXME: check for xterm behavior
Expand Down

0 comments on commit 820a44c

Please sign in to comment.