better scroll speed default for windows

This commit is contained in:
Aiden Cline
2025-11-25 01:16:21 -06:00
parent b1aaa8570e
commit 0568c943ab
3 changed files with 4 additions and 3 deletions

View File

@@ -124,7 +124,8 @@ export function Session() {
if (tui?.scroll_speed) {
return new CustomSpeedScroll(tui.scroll_speed)
}
return undefined
return new CustomSpeedScroll(process.platform === "win32" ? 3 : 1)
})
createEffect(async () => {