From ad17ec5ccad3ceffd383f228d4529438b5a3b9a6 Mon Sep 17 00:00:00 2001 From: niu tech Date: Fri, 12 Nov 2021 23:52:58 +0100 Subject: Adjust number of columns for Split Mode (#2208) Co-authored-by: Vijay A --- src/config.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/config.ts') 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'; export const DEFAULT_SERVICE_ORDER = 99; // something high enough that it gets added to the end of the already-added services on the left sidebar +export const SPLIT_COLUMNS_MIN = 1; +export const SPLIT_COLUMNS_MAX = 5; + export const DEFAULT_APP_SETTINGS = { autoLaunchOnStart: false, autoLaunchInBackground: false, @@ -193,6 +196,7 @@ export const DEFAULT_APP_SETTINGS = { spellcheckerLanguage: 'en-us', darkMode: false, splitMode: false, + splitColumns: 3, fallbackLocale: 'en-US', beta: false, isAppMuted: false, -- cgit v1.2.3-54-g00ecf