1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:15:07 +00:00

LibGUI: Flash menubar when using command palette

This commit is contained in:
bugreport0 2022-01-29 16:13:42 +01:00 committed by Andreas Kling
parent 048ed64c26
commit c20f1e06c0
3 changed files with 6 additions and 7 deletions

View file

@ -173,7 +173,7 @@ void WindowServerConnection::key_down(i32 window_id, u32 code_point, u32 key, u3
if (auto* action = action_for_key_event(*window, *key_event)) {
if (action->is_enabled()) {
action->flash_menubar_menu();
action->flash_menubar_menu(*window);
action->activate();
return;
}
@ -202,6 +202,7 @@ void WindowServerConnection::key_down(i32 window_id, u32 code_point, u32 key, u3
return;
auto* action = command_palette->selected_action();
VERIFY(action);
action->flash_menubar_menu(*window);
action->activate();
return;
}