feat: change default divider thickness to 3px for first-time users (#256)

The previous 1px default was too thin for comfortable visibility.
This changes the default to 3px, which only affects new users who
haven't customized the setting. Also updates the preview component's
fallback to stay consistent with the new default.
This commit is contained in:
Jinjing
2026-04-01 16:38:55 -07:00
committed by GitHub
parent 532ee5ca4e
commit 00d3e15c71
2 changed files with 2 additions and 2 deletions
@@ -14,7 +14,7 @@ export function TerminalThemePreview({
title,
description,
appearance,
dividerThicknessPx = 1,
dividerThicknessPx = 3,
inactivePaneOpacity = 0.9,
activePaneOpacity = 1
}: TerminalThemePreviewProps): React.JSX.Element {
+1 -1
View File
@@ -50,7 +50,7 @@ export function getDefaultSettings(homedir: string): GlobalSettings {
terminalInactivePaneOpacity: 0.8,
terminalActivePaneOpacity: 1,
terminalPaneOpacityTransitionMs: 140,
terminalDividerThicknessPx: 1,
terminalDividerThicknessPx: 3,
terminalScrollbackBytes: 10_000_000,
rightSidebarOpenByDefault: true
}