Load locale information only after application's 'ready' event
FREEBIE
This commit is contained in:
parent
5526958c52
commit
53d1e7e6c7
2 changed files with 29 additions and 18 deletions
7
main.js
7
main.js
|
@ -40,9 +40,14 @@ if (config.environment === 'production' && !process.mas) {
|
|||
const userConfig = require('./app/user_config');
|
||||
let windowConfig = userConfig.get('window');
|
||||
|
||||
const locale = require('./app/locale');
|
||||
const loadLocale = require('./app/locale').load;
|
||||
let locale;
|
||||
|
||||
function createWindow () {
|
||||
if (!locale) {
|
||||
locale = loadLocale();
|
||||
}
|
||||
|
||||
const windowOptions = Object.assign({
|
||||
width: 800,
|
||||
height: 610,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue