aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-10-09 21:25:20 +0530
committerLibravatar GitHub <noreply@github.com>2021-10-09 21:25:20 +0530
commitc4b6f6296ede86289ee1c814f5e9d19ac8be229d (patch)
tree059fe86cc726bc6b489d3f42a74525da6c9ee828 /src/config.ts
parent5.6.3-nightly.28 [skip ci] (diff)
downloadferdium-app-c4b6f6296ede86289ee1c814f5e9d19ac8be229d.tar.gz
ferdium-app-c4b6f6296ede86289ee1c814f5e9d19ac8be229d.tar.zst
ferdium-app-c4b6f6296ede86289ee1c814f5e9d19ac8be229d.zip
Control the long-press hint for service icon via a preference (#2043)
Co-authored-by: mhatvan <markus_hatvan@aon.at>
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts
index 9aca70ba3..e1e8230c2 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -180,6 +180,7 @@ export const CUSTOM_WEBSITE_RECIPE_ID = 'franz-custom-website';
180export const DEFAULT_SERVICE_ORDER = 99; // something high enough that it gets added to the end of the already-added services on the left sidebar 180export const DEFAULT_SERVICE_ORDER = 99; // something high enough that it gets added to the end of the already-added services on the left sidebar
181 181
182export const DEFAULT_APP_SETTINGS = { 182export const DEFAULT_APP_SETTINGS = {
183 autoLaunchOnStart: false,
183 autoLaunchInBackground: false, 184 autoLaunchInBackground: false,
184 runInBackground: true, 185 runInBackground: true,
185 reloadAfterResume: true, 186 reloadAfterResume: true,
@@ -233,4 +234,5 @@ export const DEFAULT_APP_SETTINGS = {
233 useVerticalStyle: false, 234 useVerticalStyle: false,
234 alwaysShowWorkspaces: false, 235 alwaysShowWorkspaces: false,
235 liftSingleInstanceLock: false, 236 liftSingleInstanceLock: false,
237 enableLongPressServiceHint: false,
236}; 238};