From cc09b26818a2ba3c9b9987b433f1a5852ac41d66 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 13 Apr 2019 21:37:54 -0400 Subject: [PATCH] hideTitleBar false --- jslib | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index 45cb346b..37d9afc5 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 45cb346be1f0af1f7046312f2665e581298ebf47 +Subproject commit 37d9afc58bf4a27b9bafe5c485d6a1f9fb06f91b diff --git a/src/main.ts b/src/main.ts index 74f1e6cc..cde9f0f3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -52,7 +52,7 @@ export class Main { this.i18nService = new I18nService('en', './locales/'); this.storageService = new ElectronStorageService(app.getPath('userData')); - this.windowMain = new WindowMain(this.storageService, 800, 600); + this.windowMain = new WindowMain(this.storageService, false, 800, 600); this.menuMain = new MenuMain(this); this.updaterMain = new UpdaterMain(this.i18nService, this.windowMain, 'directory-connector', () => { this.messagingService.send('checkingForUpdate');