Skip to content

Commit 5c568e6

Browse files
committed
Set minimum font size to 2
fixes #533
1 parent b07c562 commit 5c568e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FluentTerminal.App.ViewModels/Settings/TerminalPageViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public TerminalPageViewModel(ISettingsService settingsService, IDialogService di
255255
RestoreDefaultsCommand = new RelayCommand(async () => await RestoreDefaults().ConfigureAwait(false));
256256

257257
Fonts = systemFontService.GetSystemFontFamilies().OrderBy(s => s.Name);
258-
Sizes = Enumerable.Range(1, 72);
258+
Sizes = Enumerable.Range(2, 72);
259259

260260
_terminalOptions = _settingsService.GetTerminalOptions();
261261
}

0 commit comments

Comments
 (0)