You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I define register for Ctrl + Z or Ctrl + Y for undo and redo, only the one defined first is executed, regardless of whether Ctrl + Z or Ctrl + Y is typed on keyboard. I use a qwertz keyboard for input.
electronLocalshortcut.register(win, 'Ctrl+Z', () => {
... [executed if Ctrl + Z or Ctrl + Y is pressed]
});
electronLocalshortcut.register(win, 'Ctrl+Y', () => {
... [never executed]
});
The text was updated successfully, but these errors were encountered:
If I define register for Ctrl + Z or Ctrl + Y for undo and redo, only the one defined first is executed, regardless of whether Ctrl + Z or Ctrl + Y is typed on keyboard. I use a qwertz keyboard for input.
The text was updated successfully, but these errors were encountered: