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

Get copy context menu state from correct place

This also relies on an sourcelair/xterm.js#724

Part of #29122
上级 91a22a7c
......@@ -137,7 +137,8 @@ export class TerminalPanel extends Panel {
this._register(a);
});
}
this._copyContextMenuAction.enabled = document.activeElement.classList.contains('xterm') && window.getSelection().toString().length > 0;
const activeInstance = this._terminalService.getActiveInstance();
this._copyContextMenuAction.enabled = activeInstance && activeInstance.hasSelection();
return this._contextMenuActions;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册