-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dialog only shows white background #34
Comments
I'm not sure, I just tried latest 1.3.0 on OSX 10.14.3 with node v11.7.0 without issue, try to spawn the devtools of the created browserWindow to diagnose what's going on |
Sorry, I will just close this as I made a home-rolled HTML prompt in the meantime. Probably some weird issue on my end. :) |
Having this issue as well |
Same |
Same. I have error in dialog window
|
I had the same problem. I solved mine by using |
I'm facing this as well on Mac OS Catalina. Completely white. I'm trying to use it from the main thread (not a renderer thread). |
I'm using this this on main thread to performance a login before creating a browser window. But everything is empty app.on('ready', async () => {
const password = await prompt({
title: 'Login',
label: 'Password',
value: '',
inputAttrs: {
type: 'password'
},
type: 'input',
});
}); |
I just tried this lib out on OSX, following the instructions in the readme exactly, and the dialog appears but it's just a titlebar with a completely white pane underneath. Tried both from renderer and main process.
Any idea what I'm doing wrong?
The text was updated successfully, but these errors were encountered: