Kevin Hughes
Kevin Hughes
This is also not working for me in electron 29.3 running macOS Sonoma 14.4.1, either in production or in debug mode. The "Open Recent" menu stays disabled while recent documents...
Confirming that this is fixed for me in electron 3.0.4 and works great.
Here's my workaround, which runs AppleScript behind the scenes: ``` showItemInFolder(path) { let script = ` set thePath to POSIX file "${path}" as string tell application "Finder" to reveal thePath...
> We define the function in main process now and invoke it from renderer. This can be done through https://www.npmjs.com/package/@electron/remote or [IPC](https://texts.blog/2022/04/20/simplifying-ipc-in-electron/). I see... I'l do this from now on....
My (macOS) Electron application shows its windows with a "fade in" effect - they start as transparent and then fade in their contents. But this bug makes every window show...
After upgrading to electron 35.0.0, a "white flash" before first render is happening consistently for me again on macOS Sequoia 15.3.1, despite calling `window.show() ` only after the `ready-to-show` event...
It looks like this was fixed in https://github.com/electron/electron/pull/46353! [clavin](https://github.com/clavin) is a total hero.