Merge pull request #3243 from jeanp413/measure-charsize-on-devicePixelRatioChange

Force char size measurement when devicePixelRatio changes
This commit is contained in:
Daniel Imms
2021-02-05 11:39:31 -08:00
committed by GitHub
+4
View File
@@ -174,6 +174,10 @@ export class RenderService extends Disposable implements IRenderService {
}
public onDevicePixelRatioChange(): void {
// Force char size measurement as DomMeasureStrategy(getBoundingClientRect) is not stable
// when devicePixelRatio changes
this._charSizeService.measure();
this._renderer.onDevicePixelRatioChange();
this.refreshRows(0, this._rowCount - 1);
}