Use less than instead of non-integer check

Part of #3391
This commit is contained in:
Daniel Imms
2021-07-16 13:25:56 -07:00
parent 6f838091c3
commit 0ceeb087e9
@@ -193,8 +193,8 @@ export class CursorRenderLayer extends BaseRenderLayer {
private _clearCursor(): void {
if (this._state) {
// Avoid potential rounding errors when device pixel ratio is an odd number
if (window.devicePixelRatio % 1 !== 0) {
// Avoid potential rounding errors when device pixel ratio is less than 1
if (window.devicePixelRatio < 1) {
this._clearAll();
} else {
this._clearCells(this._state.x, this._state.y, this._state.width, 1);