fix: correctly handle Alt+Key shortcuts (#29328)
This commit is contained in:
parent
0208e4adad
commit
d74ad51826
2 changed files with 12 additions and 10 deletions
|
@ -56,6 +56,8 @@ void MenuBar::SetAcceleratorVisibility(bool visible) {
|
|||
}
|
||||
|
||||
MenuBar::View* MenuBar::FindAccelChild(char16_t key) {
|
||||
if (key == 0)
|
||||
return nullptr;
|
||||
for (auto* child : GetChildrenInZOrder()) {
|
||||
if (static_cast<SubmenuButton*>(child)->accelerator() == key)
|
||||
return child;
|
||||
|
|
|
@ -119,18 +119,18 @@ void RootView::HandleKeyEvent(const content::NativeWebKeyboardEvent& event) {
|
|||
|
||||
// Show the submenu when "Alt+Key" is pressed.
|
||||
if (event.GetType() == blink::WebInputEvent::Type::kRawKeyDown &&
|
||||
!IsAltKey(event) && IsAltModifier(event)) {
|
||||
if (menu_bar_->HasAccelerator(event.windows_key_code)) {
|
||||
if (!menu_bar_visible_) {
|
||||
SetMenuBarVisibility(true);
|
||||
event.windows_key_code >= ui::VKEY_A &&
|
||||
event.windows_key_code <= ui::VKEY_Z && IsAltModifier(event) &&
|
||||
menu_bar_->HasAccelerator(event.windows_key_code)) {
|
||||
if (!menu_bar_visible_) {
|
||||
SetMenuBarVisibility(true);
|
||||
|
||||
View* focused_view = GetFocusManager()->GetFocusedView();
|
||||
last_focused_view_tracker_->SetView(focused_view);
|
||||
menu_bar_->RequestFocus();
|
||||
}
|
||||
|
||||
menu_bar_->ActivateAccelerator(event.windows_key_code);
|
||||
View* focused_view = GetFocusManager()->GetFocusedView();
|
||||
last_focused_view_tracker_->SetView(focused_view);
|
||||
menu_bar_->RequestFocus();
|
||||
}
|
||||
|
||||
menu_bar_->ActivateAccelerator(event.windows_key_code);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue