Skip to content

Commit cc5e466

Browse files
committed
Remove windows check
1 parent 49581af commit cc5e466

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/vs/workbench/contrib/terminal/browser/xterm/xtermTerminal.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ import { IClipboardService } from 'vs/platform/clipboard/common/clipboardService
4343
import { debounce } from 'vs/base/common/decorators';
4444
import { MouseWheelClassifier } from 'vs/base/browser/ui/scrollbar/scrollableElement';
4545
import { IMouseWheelEvent, StandardWheelEvent } from 'vs/base/browser/mouseEvent';
46-
import { isWindows } from 'vs/base/common/platform';
4746

4847
const enum RenderConstants {
4948
/**
@@ -684,7 +683,7 @@ export class XtermTerminal extends DisposableStore implements IXtermTerminal, ID
684683
// - https://github.com/microsoft/vscode/issues/190195
685684
// - https://github.com/xtermjs/xterm.js/issues/4665
686685
// - https://bugs.chromium.org/p/chromium/issues/detail?id=1476475
687-
if (!XtermTerminal._checkedWebglCompatible && isWindows) {
686+
if (!XtermTerminal._checkedWebglCompatible) {
688687
XtermTerminal._checkedWebglCompatible = true;
689688
const checkCanvas = document.createElement('canvas');
690689
const checkGl = checkCanvas.getContext('webgl2');

0 commit comments

Comments
 (0)