Adam Pavlisin

Results 2 comments of Adam Pavlisin

I believe that the issue is related to the `isFormElement` function. I had similar problem (pane flying away when focusing input). Solved it by updating `isFormElement` to return true for...

We had the same problem and solved it like this. ```ts export function ensureSafeQuitAndInstall() { const electron = require('electron'); const app = electron.app; const BrowserWindow = electron.BrowserWindow; app.removeAllListeners('window-all-closed'); const browserWindows...