diff --git a/lib/components/term.js b/lib/components/term.js index afd46c22e7dc..74694c5f7668 100644 --- a/lib/components/term.js +++ b/lib/components/term.js @@ -174,8 +174,8 @@ export default class Term extends React.PureComponent { y: this.term._core.buffer.y * this.term._core.renderer.dimensions.actualCellHeight, width: this.term._core.renderer.dimensions.actualCellWidth, height: this.term._core.renderer.dimensions.actualCellHeight, - col: this.term._core.buffer.y, - row: this.term._core.buffer.x + col: this.term._core.buffer.x, + row: this.term._core.buffer.y }; props.onCursorMove(cursorFrame); })