(wc: Electron.WebContents, state: boolean)
| 56 | } |
| 57 | |
| 58 | function setCtrlShift(wc: Electron.WebContents, state: boolean) { |
| 59 | lastCtrlShiftSate = state; |
| 60 | wc.send("control-shift-state-update", state); |
| 61 | } |
| 62 | |
| 63 | export function handleCtrlShiftFocus(sender: Electron.WebContents, focused: boolean) { |
| 64 | if (!focused) { |
no outgoing calls
no test coverage detected