提交 ab5a1915 编写于 作者: D Daniel Imms

Guard canvas renderer check before option conditional

上级 54707c4c
......@@ -876,7 +876,9 @@ export class TerminalInstance implements ITerminalInstance {
// is to fix an issue where dragging the window to the top of the screen to maximize
// on Winodws/Linux would fire an event saying that the terminal was not visible.
// This should only force a refresh if one is needed.
(<any>this._xterm).renderer.onIntersectionChange({ intersectionRatio: 1 });
if (this._xterm.getOption('rendererType') === 'canvas') {
(<any>this._xterm).renderer.onIntersectionChange({ intersectionRatio: 1 });
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册