Skip to content

Commit

Permalink
Increase font max size for range header to 40
Browse files Browse the repository at this point in the history
  • Loading branch information
adiletelf committed Apr 23, 2024
1 parent 3706695 commit a71cd13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/timeLineSettingsModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 },
}
});

Expand Down

0 comments on commit a71cd13

Please sign in to comment.