Refactor BrowserWindow.fromBrowserView

This commit is contained in:
Justin Halsall 2024-01-05 17:30:17 +01:00 коммит произвёл GitHub
Родитель 16e636da5a
Коммит 5e62964be1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -93,7 +93,7 @@ BrowserWindow.fromWebContents = (webContents: WebContents) => {
BrowserWindow.fromBrowserView = (browserView: BrowserView) => { BrowserWindow.fromBrowserView = (browserView: BrowserView) => {
const { webContents } = browserView; const { webContents } = browserView;
if (!webContents) return null; if (!webContents) return null;
return BrowserWindow.fromWebContents(browserView.webContents); return BrowserWindow.fromWebContents(webContents);
}; };
BrowserWindow.prototype.setTouchBar = function (touchBar) { BrowserWindow.prototype.setTouchBar = function (touchBar) {