Merge pull request #4837 from tisilent/fix-dom-renderer-selection

handle selection when resizing
This commit is contained in:
Daniel Imms
2023-11-02 09:43:09 -07:00
committed by GitHub
6 changed files with 30 additions and 17 deletions
+1 -1
View File
@@ -219,7 +219,7 @@ export class WebglRenderer extends Disposable implements IRenderer {
for (const l of this._renderLayers) {
l.handleSelectionChanged(this._terminal, start, end, columnSelectMode);
}
this._model.selection.update(this._terminal, start, end, columnSelectMode);
this._model.selection.update(this._core, start, end, columnSelectMode);
this._requestRedrawViewport();
}