From d067673dcabc8182540470c39e857215949f8ebf Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sun, 2 Jun 2024 19:15:10 +0530 Subject: [PATCH] old --- desktop/src/main/stores/user-preferences.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/desktop/src/main/stores/user-preferences.ts b/desktop/src/main/stores/user-preferences.ts index e777e538ef..643c459c34 100644 --- a/desktop/src/main/stores/user-preferences.ts +++ b/desktop/src/main/stores/user-preferences.ts @@ -1,6 +1,11 @@ import Store, { Schema } from "electron-store"; interface UserPreferences { + /** + * If true, then the user has set a preference to also hide the dock icon on + * macOS whenever the app is hidden. The tray icon is always visible and can + * then be used to reopen the app when needed. + */ hideDockIcon?: boolean; skipAppVersion?: string; muteUpdateNotificationVersion?: string;