1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-25 10:26:00 +02:00

Merge pull request #609 from Hinton/hotfix/fix-fit-finish-bugs

Desktop fit & finish bugfixes
This commit is contained in:
Chad Scharf 2020-12-11 09:54:38 -05:00 committed by GitHub
commit 538d27b6e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit 72bf18f369068d36767794bdc0ca377f734cf373
Subproject commit 63fe38b3f4dddd701b1a8da8a89e70c9d7fbc706

View File

@ -93,7 +93,7 @@ export class Main {
this.storageService = new ElectronStorageService(app.getPath('userData'), storageDefaults);
this.windowMain = new WindowMain(this.storageService, true, undefined, undefined,
(arg) => this.processDeepLink(arg));
(arg) => this.processDeepLink(arg), (win) => this.trayMain.setupWindowListeners(win));
this.messagingMain = new MessagingMain(this, this.storageService);
this.updaterMain = new UpdaterMain(this.i18nService, this.windowMain, 'desktop', () => {
this.menuMain.updateMenuItem.enabled = false;