Skip to content

Commit

Permalink
change to v.32.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BTreston committed Dec 17, 2024
1 parent e902a8e commit 162f3bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion jslib/electron/src/tray.main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ export class TrayMain {
}

setupWindowListeners(win: BrowserWindow) {
win.on("minimize", async () => {
win.on("minimize", async (e: Event) => {
if (await this.stateService.getEnableMinimizeToTray()) {
e.preventDefault();
this.hideToTray();
}
});
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"dotenv": "16.4.5",
"electron": "33.2.0",
"electron": "32.1.1",
"electron-builder": "24.13.3",
"electron-log": "5.2.0",
"electron-reload": "2.0.0-alpha.1",
Expand Down

0 comments on commit 162f3bc

Please sign in to comment.