mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-16 12:10:41 +01:00
views: cefclient: Fix crash when ID_MENU_BUTTON doesn't exist
This commit is contained in:
parent
884b582789
commit
6036df047f
@ -1350,12 +1350,12 @@ void ViewsWindow::SetMenuFocusable(bool focusable) {
|
|||||||
|
|
||||||
if (menu_bar_) {
|
if (menu_bar_) {
|
||||||
menu_bar_->SetMenuFocusable(focusable);
|
menu_bar_->SetMenuFocusable(focusable);
|
||||||
} else {
|
} else if (menu_button_) {
|
||||||
window_->GetViewForID(ID_MENU_BUTTON)->SetFocusable(focusable);
|
menu_button_->SetFocusable(focusable);
|
||||||
|
|
||||||
if (focusable) {
|
if (focusable) {
|
||||||
// Give focus to menu button.
|
// Give focus to menu button.
|
||||||
window_->GetViewForID(ID_MENU_BUTTON)->RequestFocus();
|
menu_button_->RequestFocus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user