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

Fix an NPE in terminal

Related #32929
上级 ce9e06da
......@@ -401,7 +401,7 @@ export class TerminalInstance implements ITerminalInstance {
}
public hasSelection(): boolean {
return this._xterm.hasSelection();
return this._xterm && this._xterm.hasSelection();
}
public copySelection(): void {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册