Skip to content

Commit

Permalink
Forward "a", "d" and "m" keyboard shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
farmio committed Jan 14, 2025
1 parent bcfe4ce commit 5acc0f2
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 @@ -55,7 +55,7 @@ class KnxFrontend extends knxElement {
// 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 5acc0f2

Please sign in to comment.