diff --git a/index.js b/index.js index 309ea8bac..76aa46950 100755 --- a/index.js +++ b/index.js @@ -282,6 +282,9 @@ function notifyReady (done) { var IS_TEST = process.env.NODE_ENV === 'test' if (IS_TEST) win.setSize(1000, 800, false) if (argv.debug) win.webContents.openDevTools() + + win.maximize() + win.setFullScreen(true) splash.destroy() win.show() done() diff --git a/splash.html b/splash.html index 7fe45ee3a..bdd9c2c7a 100644 --- a/splash.html +++ b/splash.html @@ -10,10 +10,10 @@
+

Cargando...

-
diff --git a/src/main/window-state.js b/src/main/window-state.js index c7d9cb977..563769adf 100644 --- a/src/main/window-state.js +++ b/src/main/window-state.js @@ -5,8 +5,8 @@ const electron = require('electron') const store = require('../store') const defaults = { - maximize: true, - fullscreen: true, + maximize: false, + fullscreen: false, defaultWidth: 800, defaultHeight: 600, isMaximized: true diff --git a/static/css/base.css b/static/css/base.css index bbdfd4368..9185d5a8d 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -1,5 +1,5 @@ :root { - --main-bg-color: rgb(57, 82, 123); + --main-bg-color: rgba(51, 102, 255); --secondary-bg-color: blue; --main-bg-color-alpha: rgba(57, 82, 123, 0.5); --visible-z-index: 100;