1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-10 12:16:34 +03:00

force en-us locale (#618)

This commit is contained in:
Eugene Pankov 2019-01-27 23:39:05 +01:00
parent 04bf5dbcfb
commit e28c619bdc
2 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,7 @@ export class Application {
}
app.commandLine.appendSwitch('disable-http-cache')
app.commandLine.appendSwitch('lang', 'en-US')
}
async newWindow (options?: WindowOptions): Promise<Window> {

View File

@ -12,7 +12,6 @@ if (!process.env.TERMINUS_PLUGINS) {
const application = new Application()
ipcMain.on('app:new-window', () => {
console.log('new-window')
application.newWindow()
})