-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
electron: add missing fullscreen option #3192
Conversation
works but ... webPreferences: {
fullscreen: false
} not work |
electronOptions: {
width: 800,
height: 600,
fullscreen: false,
}, works on my side |
tested with your |
strange, I used this in /* MagicMirror Config Sample
*
* By Michael Teeuw https://michaelteeuw.nl
* MIT Licensed.
*
* For more information on how you can configure this file
* see https://docs.magicmirror.builders/configuration/introduction.html
* and https://docs.magicmirror.builders/modules/configuration.html
*/
let config = {
electronOptions: {
width: 800,
height: 600,
fullscreen: false,
},
address: "0.0.0.0", // Address to listen on, can be:
// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
// - another specific IPv4/6 to listen on a specific interface
// - "0.0.0.0", "::" to listen on any interface
// Default, when address config is left out or empty, is "localhost"
port: 8080,
... and it is 800x600 with taskbar, tested on a pi 4. Did you test on a pi? |
ah shit, it's me ... I have set it in webPreferences of electronOptions :/ So it's works :) |
(we open the bets? e2e will work or not ??) |
I hate the e2e tests ... |
it will works |
follow up for #3187
@bugsounet can you please confirm that this now works for you?