fix(board): drop board auto-scroll acceleration to 2 (5 still too fast)#48
Merged
Conversation
… fast) #47 was meant to ship acceleration 2 but merged the earlier acceleration-5 revision (a force-push raced the merge), so the value live on the board is the one that still scrolls too fast (~800px/s) when dragging a card to the edge. Set acceleration to 2 (~320px/s, ≈ one column per second, measured ~340) — the intended value. Keeps the smooth 5ms cadence; acceleration is the single knob.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Corrects #47. That PR was meant to ship
acceleration: 2, but it merged the earlieracceleration: 5revision — a force-push to update the value raced the merge, so the value now live onmain/production is5(~800 px/s), which still scrolls too fast when dragging a card to the board edge on a phone.Change
autoScrollacceleration5 → 2on the board'sDndContext— caps the edge-scroll at ~320 px/s (≈ one column per second), the value #47 intended. Smooth 5 ms cadence retained.Verification
tsc -bclean;bun run test→ 84 pass.5, ~2000 at dnd-kit's default). Tap-to-open and within-column reorder unaffected.