Skip to content

Commit

Permalink
Forward "a", "d" and "m" keyboard shortcuts (#819)
Browse files Browse the repository at this point in the history
  • Loading branch information
farmio authored Jan 14, 2025
1 parent ce9868b commit cc74568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class HacsFrontend extends HacsElement {
// Ignore if modifier keys are pressed
return;
}
if (["c", "e"].includes(ev.key)) {
if (["a", "c", "d", "e", "m"].includes(ev.key)) {
// @ts-ignore
fireEvent(mainWindow, "hass-quick-bar-trigger", ev, {
bubbles: false,
Expand Down

0 comments on commit cc74568

Please sign in to comment.