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
Hello! I've got a problem, if you register handler for some combination and you got an exception in that handler - next time that combo wouldn't fire the handler.
For example here is my code:
Hello! I've got a problem, if you register handler for some combination and you got an exception in that handler - next time that combo wouldn't fire the handler.
For example here is my code:
this.hotkeyService.add(new Hotkey('ctrl+shift+e', (event: KeyboardEvent, combo: string): boolean => { throw new Error('error!'); return false; }));
as I've already said - the first time we successfully get into the callback, but next time nothing happens.
The text was updated successfully, but these errors were encountered: