зеркало из https://github.com/electron/electron.git
BrowserWindow.fromBrowserView can return null
This commit is contained in:
Родитель
b57d41181a
Коммит
16e636da5a
|
@ -91,6 +91,8 @@ BrowserWindow.fromWebContents = (webContents: WebContents) => {
|
|||
};
|
||||
|
||||
BrowserWindow.fromBrowserView = (browserView: BrowserView) => {
|
||||
const { webContents } = browserView;
|
||||
if (!webContents) return null;
|
||||
return BrowserWindow.fromWebContents(browserView.webContents);
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче