fix: default scroll speed should be slower

This commit is contained in:
adamdotdevin 2025-08-13 14:35:09 -05:00
commit 69d516c7fa
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -1153,7 +1153,7 @@ func NewMessagesComponent(app *app.App) MessagesComponent {
if app.State.ScrollSpeed != nil && *app.State.ScrollSpeed > 0 { if app.State.ScrollSpeed != nil && *app.State.ScrollSpeed > 0 {
vp.MouseWheelDelta = *app.State.ScrollSpeed vp.MouseWheelDelta = *app.State.ScrollSpeed
} else { } else {
vp.MouseWheelDelta = 4 vp.MouseWheelDelta = 2
} }
// Default to showing tool details, hidden thinking blocks // Default to showing tool details, hidden thinking blocks