Jeremy Rose

Results 307 comments of Jeremy Rose

If you're using Electron >3.0.0 (currently in beta) and you only need totally-transparent areas to be click-through-able, try the setWindowShape API introduced in #13789.

Thanks for reporting this and helping to make Electron better! Would it be possible for you to make a standalone testcase with only the code necessary to reproduce the issue?...

Hm, I can't reproduce the sandbox error using https://github.com/JonathanWoodward/electron-sandbox-error. I cloned, ran `yarn` to install dependencies, then `yarn start`, but I see no error being printed.

Does Chrome have the same issue?

Seems relevant to https://github.com/electron/electron/pull/30702

Yeah, it seems reasonable to expect `webContents.ipc.send` to exist. We could clone the existing `IpcMain` docs over to `IpcWebContents` or something.

@miniak I don't see any particular reason to deprecate them, they're minimal overhead and deprecating/removing them would break apps for no particular reason. I'd be fine adding a note in...

@miniak yeah, i remember that! thanks for the link. i now think i was wrong 😅

I don't think this is worth backporting. It's easily polyfillable.

I feel a little awkward about adding the `ipc.send` family of methods, because it adds to the already somewhat bewildering set of IPC methods available. - `webContents.send` - `webContents.sendToFrame` -...