xterm-addon-webgl
Advanced tools
Comparing version 0.15.0-beta.8 to 0.15.0-beta.9
{ | ||
"name": "xterm-addon-webgl", | ||
"version": "0.15.0-beta.8", | ||
"version": "0.15.0-beta.9", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "The xterm.js authors", |
@@ -15,2 +15,3 @@ /** | ||
import { toDisposable } from 'common/Lifecycle'; | ||
import { isFirefox } from 'common/Platform'; | ||
@@ -194,4 +195,5 @@ interface ICursorState { | ||
if (this._state) { | ||
// Avoid potential rounding errors when device pixel ratio is less than 1 | ||
if (this._coreBrowserService.dpr < 1) { | ||
// Avoid potential rounding errors when browser is Firefox (#4487) or device pixel ratio is | ||
// less than 1 | ||
if (isFirefox || this._coreBrowserService.dpr < 1) { | ||
this._clearAll(); | ||
@@ -198,0 +200,0 @@ } else { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
538173
2378