parro-it / electron-localshortcut

Add keyboard shortcuts locally to a BrowserWindow instance, without using a Menu
MIT License
422 stars 38 forks source link

Prevent default event action #92

Open fxha opened 5 years ago

fxha commented 5 years ago

Add support to prevent the default action when the callback returns true. E.g:

electronLocalshortcut.register(win, accelerator, () => {
  // ...
  return true // prevent default action
})

fixes #69

ibc commented 4 years ago

Never merged, right?