From a71cd132cd9418c0a878906c09db88c697684ac2 Mon Sep 17 00:00:00 2001 From: Adilet Soronov <74559101+adiletelf@users.noreply.github.com> Date: Wed, 24 Apr 2024 02:57:58 +0600 Subject: [PATCH] Increase font max size for range header to 40 --- src/timeLineSettingsModel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/timeLineSettingsModel.ts b/src/timeLineSettingsModel.ts index a4d984d..a4b8cc7 100644 --- a/src/timeLineSettingsModel.ts +++ b/src/timeLineSettingsModel.ts @@ -53,7 +53,7 @@ const granularityOptions: IEnumMember[] = [ class TextSizeDefaults { public static readonly Default: number = 9; public static readonly Min: number = 7; - public static readonly Max: number = 24; + public static readonly Max: number = 40; } class CursorSettingsCard extends Card { @@ -408,7 +408,7 @@ export class LabelsSettingsCard extends Card { value: TextSizeDefaults.Default, options: { minValue: { value: TextSizeDefaults.Min, type: ValidatorType.Min }, - maxValue: { value: TextSizeDefaults.Max, type: ValidatorType.Max }, + maxValue: { value: 24, type: ValidatorType.Max }, } });