refreshRowElements argument order was flipped

This is potentially a fix for #1573 but I have not tested.
This commit is contained in:
Vincent Woo
2018-07-18 17:55:59 -07:00
committed by GitHub
parent 5b8da8c89a
commit 0f6a8d3991
+1 -1
View File
@@ -52,7 +52,7 @@ export class DomRenderer extends EventEmitter implements IRenderer {
this._rowContainer.classList.add(ROW_CONTAINER_CLASS);
this._rowContainer.style.lineHeight = 'normal';
this._rowContainer.setAttribute('aria-hidden', 'true');
this._refreshRowElements(this._terminal.rows, this._terminal.cols);
this._refreshRowElements(this._terminal.cols, this._terminal.rows);
this._selectionContainer = document.createElement('div');
this._selectionContainer.classList.add(SELECTION_CLASS);
this._selectionContainer.setAttribute('aria-hidden', 'true');