fix: update `BrowserView#lastWindowSize` after window resize (#43463)

fix: update BrowserView#lastWindowSize after window resize (#43462)
This commit is contained in:
Zorro Liu 2024-09-09 20:22:30 +08:00 коммит произвёл GitHub
Родитель 8c5e7bbf6b
Коммит e2fe8f50e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -145,6 +145,12 @@ export default class BrowserView {
if (this.#autoHorizontalProportion || this.#autoVerticalProportion) {
this.#webContentsView.setBounds(newViewBounds);
}
// Update #lastWindowSize value after browser windows resize
this.#lastWindowSize = {
width: newBounds.width,
height: newBounds.height
};
}
get webContentsView () {