提交 6e57a3c8 编写于 作者: B Benjamin Pasero

fix weird NPE with calling webContents.isDevToolsFocused

上级 bbd8340d
......@@ -654,7 +654,7 @@ export class VSCodeMenu {
return;
}
if (windowInFocus.win.webContents.isDevToolsFocused()) {
if (windowInFocus.win.webContents.isDevToolsFocused && windowInFocus.win.webContents.isDevToolsFocused()) { // timing issue, sometimes isDevToolsFocused is not defined?
devToolsFocusedFn(windowInFocus.win.devToolsWebContents);
} else {
windows.manager.sendToFocused('vscode:runAction', actionId);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册