omridevk / ng-keyboard-shortcuts

Dead Simple Keyboard Shortcuts Management for Angular
https://ng-keyboard-shortcuts.vercel.app/
147 stars 34 forks source link

'alt + n' shortcut fires when press short cut key 'ctrl + alt + n' #150

Open ssrasal opened 1 year ago

ssrasal commented 1 year ago

{ key: ["alt + n"], label: "Actions", preventDefault: true, allowIn: [AllowIn.Textarea, AllowIn.Input, AllowIn.Select, AllowIn.ContentEditable], command: () => { if (this.addNewHandler != null && this.addNewHandler != undefined) { let addEvent: AddEvent = { sender: this.sender, rowIndex: 0, dataItem: null, isNew: false }

      }
    }
clementcolne commented 1 year ago

Up. Have the same issue with ctrl + i, it get fired with any ctrl + anykeypressed + i. Any solution ?