(sender: Electron.WebContents, focused: boolean)
| 61 | } |
| 62 | |
| 63 | export function handleCtrlShiftFocus(sender: Electron.WebContents, focused: boolean) { |
| 64 | if (!focused) { |
| 65 | setCtrlShift(sender, false); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | export function handleCtrlShiftState(sender: Electron.WebContents, waveEvent: WaveKeyboardEvent) { |
| 70 | if (waveEvent.type == "keyup") { |
no test coverage detected