chore: address suggestions from review

This commit is contained in:
Shelley Vohr 2024-11-20 15:58:17 +01:00
Родитель bdc7b37b7f
Коммит f817b07c7e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F13993A75599653C
1 изменённых файлов: 7 добавлений и 3 удалений

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

@ -205,7 +205,11 @@ void SwizzleSwipeWithEvent(NSView* view, SEL swiz_selector) {
// The WebContentsView is added a sibling of BaseWindow's contentView at
// index 0 before it in the paint order - see
// https://github.com/electron/electron/pull/41256.
auto* wcv = shell_->GetContentsView()->children().front().get();
const auto& children = shell_->GetContentsView()->children();
if (children.empty())
return;
auto* wcv = children.front().get();
if (!wcv)
return;
@ -215,8 +219,8 @@ void SwizzleSwipeWithEvent(NSView* view, SEL swiz_selector) {
if (!ns_view)
return;
auto* iwcv = (ElectronInspectableWebContentsView*)ns_view;
[iwcv redispatchContextMenuEvent:base::apple::OwnedNSEvent(event)];
[static_cast<ElectronInspectableWebContentsView*>(ns_view)
redispatchContextMenuEvent:base::apple::OwnedNSEvent(event)];
return;
}