Revert "Updated scroll_speed to allow any positive number" (#4437)

This commit is contained in:
Aiden Cline
2025-11-17 19:19:06 -08:00
committed by GitHub
parent a10fd8ca5c
commit a398eed8b8
3 changed files with 3 additions and 3 deletions

View File

@@ -437,7 +437,7 @@ export namespace Config {
})
export const TUI = z.object({
scroll_speed: z.number().positive().optional().default(1).describe("TUI scroll speed"),
scroll_speed: z.number().min(0.001).optional().default(1).describe("TUI scroll speed"),
scroll_acceleration: z
.object({
enabled: z.boolean().describe("Enable scroll acceleration"),