mirror of
https://github.com/aunetx/deezer-linux.git
synced 2025-08-14 14:18:17 +02:00
30 lines
1003 B
Diff
30 lines
1003 B
Diff
From 4dbe17674fef2f48b638cd4dc164b66042d03213 Mon Sep 17 00:00:00 2001
|
|
From: josselinonduty <contact@josselinonduty.fr>
|
|
Date: Mon, 21 Apr 2025 00:50:26 +0900
|
|
Subject: [PATCH] fix: reduce to systray on close with respect to execution
|
|
option
|
|
|
|
---
|
|
build/main.js | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/build/main.js b/build/main.js
|
|
index 9623b50..c904158 100644
|
|
--- a/build/main.js
|
|
+++ b/build/main.js
|
|
@@ -3049,7 +3049,10 @@
|
|
this._adjustViewToContentSize(),
|
|
mainView.setAutoResize({ width: !0, height: !0 });
|
|
} else this.appService.setWindow(this.window, void 0);
|
|
- if ((this.appService.setUserAgent(), isPlatform(PLATFORM.DARWIN))) {
|
|
+ if (
|
|
+ (this.appService.setUserAgent(), isPlatform(PLATFORM.LINUX)) &&
|
|
+ !process.argv.some((arg) => arg === "--disable-systray")
|
|
+ ) {
|
|
let isQuitting = !1;
|
|
external_electron_namespaceObject.app.on(
|
|
"before-quit",
|
|
--
|
|
2.43.0
|
|
|