aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
authorLibravatar niu tech <jerzyglowacki@gmail.com>2021-11-12 23:52:58 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-13 04:22:58 +0530
commitad17ec5ccad3ceffd383f228d4529438b5a3b9a6 (patch)
treef8cb939e8a1ae8d24126d37dfcd7e4b00c85eba0 /src/config.ts
parentNew Crowdin updates (#2219) (diff)
downloadferdium-app-ad17ec5ccad3ceffd383f228d4529438b5a3b9a6.tar.gz
ferdium-app-ad17ec5ccad3ceffd383f228d4529438b5a3b9a6.tar.zst
ferdium-app-ad17ec5ccad3ceffd383f228d4529438b5a3b9a6.zip
Adjust number of columns for Split Mode (#2208)
Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts
index fb073c062..f8659970c 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -172,6 +172,9 @@ export const CUSTOM_WEBSITE_RECIPE_ID = 'franz-custom-website';
172 172
173export const DEFAULT_SERVICE_ORDER = 99; // something high enough that it gets added to the end of the already-added services on the left sidebar 173export const DEFAULT_SERVICE_ORDER = 99; // something high enough that it gets added to the end of the already-added services on the left sidebar
174 174
175export const SPLIT_COLUMNS_MIN = 1;
176export const SPLIT_COLUMNS_MAX = 5;
177
175export const DEFAULT_APP_SETTINGS = { 178export const DEFAULT_APP_SETTINGS = {
176 autoLaunchOnStart: false, 179 autoLaunchOnStart: false,
177 autoLaunchInBackground: false, 180 autoLaunchInBackground: false,
@@ -193,6 +196,7 @@ export const DEFAULT_APP_SETTINGS = {
193 spellcheckerLanguage: 'en-us', 196 spellcheckerLanguage: 'en-us',
194 darkMode: false, 197 darkMode: false,
195 splitMode: false, 198 splitMode: false,
199 splitColumns: 3,
196 fallbackLocale: 'en-US', 200 fallbackLocale: 'en-US',
197 beta: false, 201 beta: false,
198 isAppMuted: false, 202 isAppMuted: false,